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
Some tests don't properly deallocate memory. There tends to be calls to X_Construct functions and sometimes no corresponding X_Destruct calls. This causes memory leaks.
We should ensure that anywhere memory is allocated (be it with Xalloc type calls or using X_Construct calls), we should free it up in the appropriate way when it is no longer required.
The text was updated successfully, but these errors were encountered:
Some tests don't properly deallocate memory. There tends to be calls to
X_Construct
functions and sometimes no correspondingX_Destruct
calls. This causes memory leaks.We should ensure that anywhere memory is allocated (be it with
Xalloc
type calls or usingX_Construct
calls), we should free it up in the appropriate way when it is no longer required.The text was updated successfully, but these errors were encountered: