summaryrefslogtreecommitdiff
path: root/lib/headerfmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/headerfmt.c')
-rw-r--r--lib/headerfmt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/headerfmt.c b/lib/headerfmt.c
index 1f6390b5e..781a78e41 100644
--- a/lib/headerfmt.c
+++ b/lib/headerfmt.c
@@ -469,6 +469,10 @@ static int parseFormat(headerSprintfArgs hsa, char * str,
if (*start == '\\') {
start++;
+ if (*start == '\0') {
+ hsaError(hsa, _("escaped char expected after \\"));
+ goto errxit;
+ }
*dst++ = escapedChar(*start++);
} else {
*dst++ = *start++;