- stty's visible() function and catv's guts are identical. Merge them into
[oweals/busybox.git] / editors / patch.c
index 8e885d06e29a49253ed4286636cf1b4d975b5562..f8d7605c0d4ab707766a9dedd223b7546e035c8d 100644 (file)
@@ -15,9 +15,8 @@
  *
  *  Issues
  *   - Non-interactive
- *   - Patches must apply cleanly or the hunk will fail.
+ *   - Patches must apply cleanly or patch (not just one hunk) will fail.
  *   - Reject file isnt saved
- *   -
  */
 
 #include <getopt.h>
@@ -214,6 +213,9 @@ int patch_main(int argc, char **argv)
                                                        bb_error_msg("hunk #%d FAILED at %d", hunk_count, hunk_offset_start);
                                                        hunk_error++;
                                                        free(patch_line);
+                                                       /* Probably need to find next hunk, etc... */
+                                                       /* but for now we just bail out */
+                                                       patch_line = NULL;
                                                        break;
                                                }
                                                free(src_line);