diff options
Diffstat (limited to 'debian/patches/190_Strchop.patch')
-rw-r--r-- | debian/patches/190_Strchop.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/debian/patches/190_Strchop.patch b/debian/patches/190_Strchop.patch deleted file mode 100644 index e27861f..0000000 --- a/debian/patches/190_Strchop.patch +++ /dev/null @@ -1,16 +0,0 @@ -Subject: Check length for Strchop() -From: Tatsuya Kinoshita <tats@debian.org> - ---- a/Str.c -+++ b/Str.c -@@ -278,8 +278,8 @@ void - Strchop(Str s) - { - STR_LENGTH_CHECK(s); -- while ((s->ptr[s->length - 1] == '\n' || s->ptr[s->length - 1] == '\r') && -- s->length > 0) { -+ while (s->length > 0 && -+ (s->ptr[s->length - 1] == '\n' || s->ptr[s->length - 1] == '\r')) { - s->length--; - } - s->ptr[s->length] = '\0'; |