diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/patch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/patch.c b/editors/patch.c index f11f8a1..8e885d0 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -117,12 +117,14 @@ int patch_main(int argc, char **argv) free(patch_line); patch_line = xmalloc_fgets(patch_file); } + /* FIXME: patch_line NULL check?? */ /* Extract the filename used before the patch was generated */ original_filename = extract_filename(patch_line, patch_level); free(patch_line); patch_line = xmalloc_fgets(patch_file); + /* FIXME: NULL check?? */ if (strncmp(patch_line, "+++ ", 4) != 0) { ret = 2; bb_error_msg("invalid patch"); |