Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
test: fix buffer overflow in large header test
Browse files Browse the repository at this point in the history
Fixes #136.
  • Loading branch information
bnoordhuis committed Nov 29, 2012
1 parent 14d42be commit cd01361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.c
Expand Up @@ -32,7 +32,7 @@
#define FALSE 0

#define MAX_HEADERS 13
#define MAX_ELEMENT_SIZE 500
#define MAX_ELEMENT_SIZE 2048

#define MIN(a,b) ((a) < (b) ? (a) : (b))

Expand Down

0 comments on commit cd01361

Please sign in to comment.