summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/skin_parser/skin_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/skin_parser/skin_debug.c b/lib/skin_parser/skin_debug.c
index 43cd746253..ff26819bc0 100644
--- a/lib/skin_parser/skin_debug.c
+++ b/lib/skin_parser/skin_debug.c
@@ -322,7 +322,7 @@ void skin_error_format_message(void)
322 text[i++] = '.'; 322 text[i++] = '.';
323 text[i++] = '.'; 323 text[i++] = '.';
324 text[i++] = '.'; 324 text[i++] = '.';
325 for (j=error_col-10; error_line_start[j] && error_line_start[j] != '\n'; j++) 325 for (j=error_col-10; j < len && error_line_start[j] && error_line_start[j] != '\n'; j++)
326 text[i++] = error_line_start[j]; 326 text[i++] = error_line_start[j];
327 text[i] = '\0'; 327 text[i] = '\0';
328 error_col = 18; 328 error_col = 18;