about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--blaze822.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blaze822.c b/blaze822.c
index 8a9d00c..f6b9130 100644
--- a/blaze822.c
+++ b/blaze822.c
@@ -274,6 +274,7 @@ blaze822(char *file)
 		if ((end = memmem(buf-1+used, rd+1, "\n\n", 2)) ||
 		    (end = memmem(buf-3+used, rd+3, "\r\n\r\n", 4))) {
 			used += rd;
+			end++;
 			break;
 		}
 
@@ -281,7 +282,6 @@ blaze822(char *file)
 	}
 	close(fd);
 
-	end++;
 	*end = 0;   // dereferencing *end is safe
 
 	char *s;