]> granicus.if.org Git - file/commitdiff
off by one in out of bounds calculations (Jan Kaluza)
authorChristos Zoulas <christos@zoulas.com>
Tue, 4 Mar 2014 17:42:19 +0000 (17:42 +0000)
committerChristos Zoulas <christos@zoulas.com>
Tue, 4 Mar 2014 17:42:19 +0000 (17:42 +0000)
src/softmagic.c

index 170de9590690a128f0de5a1ddb0ffa11d12e5346..5ed3998e26e1e4bb21a2de01372ccf95cbb693d1 100644 (file)
@@ -32,7 +32,7 @@
 #include "file.h"
 
 #ifndef        lint
-FILE_RCSID("@(#)$File: softmagic.c,v 1.176 2014/02/18 17:59:21 kim Exp $")
+FILE_RCSID("@(#)$File: softmagic.c,v 1.177 2014/02/21 14:32:48 christos Exp $")
 #endif /* lint */
 
 #include "magic.h"
@@ -72,7 +72,7 @@ private void cvt_16(union VALUETYPE *, const struct magic *);
 private void cvt_32(union VALUETYPE *, const struct magic *);
 private void cvt_64(union VALUETYPE *, const struct magic *);
 
-#define OFFSET_OOB(n, o, i)    ((n) < (o) || (i) >= ((n) - (o)))
+#define OFFSET_OOB(n, o, i)    ((n) < (o) || (i) > ((n) - (o)))
 /*
  * softmagic - lookup one file in parsed, in-memory copy of database
  * Passed the name and FILE * of one file to be typed.