You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
atom_parser.c has some bugs in memory allocation and deallocation paths:
1) It uses malloc(x * y) instead of calloc(x, y) without overflow checking;
2) It uses assign instead of strdup() in a few places, leading to double free.
The patch below fixes (at least some) issues found on OpenBSD.
Original issue reported on code.google.com by [email protected] on 9 Jul 2014 at 10:47
Original issue reported on code.google.com by
[email protected]
on 9 Jul 2014 at 10:47Attachments:
The text was updated successfully, but these errors were encountered: