Skip to content

Commit e4b3690

Browse files
peffgitster
authored andcommitted
diff-delta: set size out-parameter to 0 for NULL delta
When we cannot generate a delta, we return NULL but leave delta_size untouched. This is generally OK, as callers rely on NULL to decide if the output is usable or not. But it can confuse compilers; in particular, gcc 9.2.1 with "-flto -O3" complains in fast-import's store_object() that delta_len may be used uninitialized. Let's change the diff-delta code to set the size explicitly to 0 for a NULL return. That silences the compiler and makes it easier to reason about the result. Reported-by: Stephan Beyer <[email protected]> Helped-by: Junio C Hamano <[email protected]> Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7140414 commit e4b3690

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

diff-delta.c

+2
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,8 @@ create_delta(const struct delta_index *index,
326326
const unsigned char *ref_data, *ref_top, *data, *top;
327327
unsigned char *out;
328328

329+
*delta_size = 0;
330+
329331
if (!trg_buf || !trg_size)
330332
return NULL;
331333

0 commit comments

Comments
 (0)