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
Hi, while referencing your code for the marauder companion app, I noticed this in a few places in evil_portal_storage.c:
free(buf_ptr);
This seems like a problem because at this point, buf_ptr is referencing whatever memory comes directly after what it's initially set to. This is undefined behavior, and it would be better to delete these lines.
The text was updated successfully, but these errors were encountered:
Hi, while referencing your code for the marauder companion app, I noticed this in a few places in evil_portal_storage.c:
free(buf_ptr);
This seems like a problem because at this point, buf_ptr is referencing whatever memory comes directly after what it's initially set to. This is undefined behavior, and it would be better to delete these lines.
The text was updated successfully, but these errors were encountered: