diff options
Diffstat (limited to 'test/Analysis/malloc-overflow.c')
-rw-r--r-- | test/Analysis/malloc-overflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/malloc-overflow.c b/test/Analysis/malloc-overflow.c index 2f443ca..99e05ad 100644 --- a/test/Analysis/malloc-overflow.c +++ b/test/Analysis/malloc-overflow.c @@ -102,7 +102,7 @@ void * f13(struct s13 *s) { if (s->n > 10) return NULL; - return malloc(s->n * sizeof(int)); // no warning + return malloc(s->n * sizeof(int)); // no-warning } void * f14(int n) |