Skip to content

Commit

Permalink
Also here
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelortmann committed Jun 2, 2024
1 parent 9fc62e5 commit b922396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dccutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ void removedcc(int n)
nfree(dcc[n].u.other);
dcc_total--;
if (n < dcc_total)
memcpy(&dcc[n], &dcc[dcc_total], sizeof(struct dcc_t));
dcc[n] = dcc[dcc_total];
else
egg_bzero(&dcc[n], sizeof(struct dcc_t)); /* drummer */
}
Expand Down

0 comments on commit b922396

Please sign in to comment.