ref: 51dcf4add6e046568557cee2fa01975f14716889
parent: c53e0d386793840ad84b8bbcb4760cfb2b6897d4
author: Ben Harris <bjh21@bjh21.me.uk>
date: Tue Jan 10 15:28:19 EST 2023
Last-ditch maximum size limit for Twiddle This makes sure that width * height <= INT_MAX, which it rather needs to be.
--- a/twiddle.c
+++ b/twiddle.c
@@ -10,6 +10,7 @@
#include <string.h>
#include <assert.h>
#include <ctype.h>
+#include <limits.h>
#include <math.h>
#include "puzzles.h"
@@ -210,6 +211,8 @@
return "Width must be at least the rotating block size";
if (params->h < params->n)
return "Height must be at least the rotating block size";
+ if (params->w > INT_MAX / params->h)
+ return "Width times height must not be unreasonably large";
return NULL;
}