diff options
author | Andreas Gruenbacher <agruen@suse.de> | 2009-03-14 00:09:04 +0100 |
---|---|---|
committer | Andreas Gruenbacher <agruen@suse.de> | 2009-03-22 13:38:25 +0100 |
commit | 17a7d6db47e5529d5c92bb075cb7872e0029499b (patch) | |
tree | 8951990290acf0c80a31b780ed405556ebe8f964 /Makefile.in | |
parent | 65b2c8db1c58897b79eadacbeca8a63c30b82d38 (diff) | |
download | patch-17a7d6db47e5529d5c92bb075cb7872e0029499b.tar.gz |
Wrong assertion in savebuf
Patch fails with "Assertion `s && size' failed" when it sees
a zero-length line. However, as the test case shows, a zero-
length line can occur as the last line of a patch.
Reported by Clarence Dang <clarencedang@users.sourceforge.net>.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 595289a..fd5124f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -88,8 +88,8 @@ HDRS = argmatch.h backupfile.h common.h dirname.h \ MISC = AUTHORS COPYING ChangeLog INSTALL Makefile.in NEWS README VERSION \ aclocal.m4 config.hin configure configure.ac install-sh \ mkinstalldirs patch.man stdbool_.h timespec.h -TESTS = tests/crlf-handling tests/preserve-c-function-names \ - tests/remember-backup-files +TESTS = tests/no-newline-triggers-assert tests/preserve-c-function-names \ + tests/remember-backup-files tests/crlf-handling DISTFILES = $(MISC) $(SRCS) $(HDRS) $(M4FILES) $(TESTS) \ pc/chdirsaf.c pc/djgpp/config.sed pc/djgpp/configure.bat \ pc/djgpp/configure.sed pc/djgpp/README |