patch: fix bad line ending handling ("Nguyen Thai Ngoc Duy" <pclouds@gmail.com>)

This commit is contained in:
Denis Vlasenko 2007-08-01 23:30:54 +00:00
parent a1b16f4d5c
commit fc77eb54e7

View File

@ -96,7 +96,7 @@ int patch_main(int argc, char **argv)
ret = 0; ret = 0;
} }
patch_line = xmalloc_fgets(patch_file); patch_line = xmalloc_getline(patch_file);
while (patch_line) { while (patch_line) {
FILE *src_stream; FILE *src_stream;
FILE *dst_stream; FILE *dst_stream;
@ -115,7 +115,7 @@ int patch_main(int argc, char **argv)
*/ */
while (patch_line && strncmp(patch_line, "--- ", 4) != 0) { while (patch_line && strncmp(patch_line, "--- ", 4) != 0) {
free(patch_line); free(patch_line);
patch_line = xmalloc_fgets(patch_file); patch_line = xmalloc_getline(patch_file);
} }
/* FIXME: patch_line NULL check?? */ /* FIXME: patch_line NULL check?? */
@ -123,7 +123,7 @@ int patch_main(int argc, char **argv)
original_filename = extract_filename(patch_line, patch_level); original_filename = extract_filename(patch_line, patch_level);
free(patch_line); free(patch_line);
patch_line = xmalloc_fgets(patch_file); patch_line = xmalloc_getline(patch_file);
/* FIXME: NULL check?? */ /* FIXME: NULL check?? */
if (strncmp(patch_line, "+++ ", 4) != 0) { if (strncmp(patch_line, "+++ ", 4) != 0) {
ret = 2; ret = 2;