diff options
Diffstat (limited to 'sysutils/screen/files/patch-ansi.c')
-rw-r--r-- | sysutils/screen/files/patch-ansi.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/sysutils/screen/files/patch-ansi.c b/sysutils/screen/files/patch-ansi.c index dc5ba91b521a..55f8f3a498f8 100644 --- a/sysutils/screen/files/patch-ansi.c +++ b/sysutils/screen/files/patch-ansi.c @@ -1,11 +1,10 @@ ---- ansi.c.orig Mon Sep 8 07:24:44 2003 -+++ ansi.c Mon Dec 1 17:17:17 2003 -@@ -559,7 +559,7 @@ - { - case '0': case '1': case '2': case '3': case '4': - case '5': case '6': case '7': case '8': case '9': -- if (curr->w_NumArgs < MAXARGS) -+ if (curr->w_NumArgs >= 0 && curr->w_NumArgs < MAXARGS) - { - if (curr->w_args[curr->w_NumArgs] < 100000000) - curr->w_args[curr->w_NumArgs] = +--- ansi.c.orig 2014-04-26 04:32:54.000000000 -0700 ++++ ansi.c 2014-04-29 19:08:26.631287189 -0700 +@@ -569,6 +569,7 @@ + case '0': case '1': case '2': case '3': case '4': + case '5': case '6': case '7': case '8': case '9': + if (curr->w_NumArgs < MAXARGS) ++ if (curr->w_NumArgs >= 0 && curr->w_NumArgs < MAXARGS) + { + if (curr->w_args[curr->w_NumArgs] < 100000000) + curr->w_args[curr->w_NumArgs] = |