home · contact · privacy
Make textfile_width() check for too large lines.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 31 Mar 2014 02:24:10 +0000 (04:24 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 31 Mar 2014 02:24:10 +0000 (04:24 +0200)
TODO
src/common/readwrite.c

diff --git a/TODO b/TODO
index 42c0e9a45c7d144e1a0f6261bb86c595df0e5819..16d126be2371c5374c1ab8b51ad0f58689f9700a 100644 (file)
--- a/TODO
+++ b/TODO
@@ -9,8 +9,6 @@ BOTH SERVER/CLIENT:
 
 - be more strict and humble when allocating memory from the stack
 
-- in textfield_width(), handle too large lines somehow
-
 - may err_line store the processed line internally as it does the line count
 
 SERVER:
index a0ab3f7cf5ccfef0f7bc7350a5066aa3df13c623..3dcd2a2d90ec307d86a6c23fe99a36048725e143 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "readwrite.h"
 #include <stddef.h> /* size_t */
-#include <stdint.h> /* uint8_t, uint16_t, uint32_t */
+#include <stdint.h> /* uint8_t, uint16_t, uint32_t, UINT32_MAX */
 #include <stdio.h> /* FILE, fseek(), sprintf(), fgets(), fgetc(), ferror(),
                     * fputc(), fwrite(), fclose(), fopen()
                     */
@@ -108,6 +108,7 @@ extern uint32_t textfile_width(FILE * file)
         {
             break;
         }
+        exit_trouble(UINT32_MAX == c_count, f_name, "too large text file line");
         c_count++;
         if ('\n' == c)
         {