diff options
Diffstat (limited to 'utils/hp2ps/HpFile.c')
-rw-r--r-- | utils/hp2ps/HpFile.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/hp2ps/HpFile.c b/utils/hp2ps/HpFile.c index 1f2bf2d8d0..787a268229 100644 --- a/utils/hp2ps/HpFile.c +++ b/utils/hp2ps/HpFile.c @@ -416,7 +416,10 @@ GetString(infp) i = 0; while (ch != '\"') { - if (i == stringbuffersize - 1) { + if (ch == EOF) { + Error("%s, line %d: EOF when expecting \"", hpfile, linenum, ch); + } + else if (i == stringbuffersize - 1) { stringbuffersize = 2 * stringbuffersize; stringbuffer = xrealloc(stringbuffer, stringbuffersize); } |