Skip to content

Commit

Permalink
increase mbuf_alloc (avoid oom test errors)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Aug 31, 2023
1 parent 5973e86 commit d4d8048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ int re_alloc(struct re **rep)
if (!re)
return ENOMEM;

re->fhsld = mbuf_alloc(32 * sizeof(void *));
re->fhsld = mbuf_alloc(64 * sizeof(void *));
if (!re->fhsld) {
err = ENOMEM;
goto out;
Expand Down

0 comments on commit d4d8048

Please sign in to comment.