Skip to content

Commit

Permalink
Merge pull request #32662 from alingse-forks/fix-makezero-bug
Browse files Browse the repository at this point in the history
fix: fix miss makezero bug
  • Loading branch information
k8s-ci-robot authored May 30, 2024
2 parents ec7d0c0 + 60717eb commit 738c073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gopherage/cmd/merge/merge.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func run(flags *flags, cmd *cobra.Command, args []string) {
os.Exit(2)
}

profiles := make([][]*cover.Profile, len(args))
profiles := make([][]*cover.Profile, 0, len(args))
for _, path := range args {
profile, err := util.LoadProfile(path)
if err != nil {
Expand Down

0 comments on commit 738c073

Please sign in to comment.