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
The getrandom XS function allocates a buffer (char *data), but never frees it. So it will leak that buffer every time the function is called. It needs to be freed using Safefree() before returning/throwing.
The text was updated successfully, but these errors were encountered:
The
getrandom
XS function allocates a buffer (char *data
), but never frees it. So it will leak that buffer every time the function is called. It needs to be freed usingSafefree()
before returning/throwing.The text was updated successfully, but these errors were encountered: