We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8542481 commit d1d85b3Copy full SHA for d1d85b3
tests/regression/74-invalid_deref/30-calloc.c
@@ -0,0 +1,9 @@
1
+//PARAM: --set ana.activated[+] useAfterFree --set ana.activated[+] threadJoins --set ana.activated[+] memOutOfBounds --enable ana.int.interval --set ana.base.arrays.domain partitioned
2
+#include <pthread.h>
3
+#include <goblint.h>
4
+
5
+int main(int argc, char **argv)
6
+{
7
+ int* ptrCalloc = calloc(100UL,8UL);
8
+ *ptrCalloc = 8; //NOWARN
9
+}
0 commit comments