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
refTypeCheck in src/ref.c:257 invokes undefined behavior. It declares but does not initialize a pointer and then immediately checks whether it is NULL. Based on the resulting error message, this is likely a typo and the check should instead check the function's first argument for NULL.
The text was updated successfully, but these errors were encountered:
refTypeCheck
insrc/ref.c:257
invokes undefined behavior. It declares but does not initialize a pointer and then immediately checks whether it isNULL
. Based on the resulting error message, this is likely a typo and the check should instead check the function's first argument forNULL
.The text was updated successfully, but these errors were encountered: