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
{{ message }}
This repository was archived by the owner on Nov 14, 2024. It is now read-only.
https://github.com/symisc/PH7/blob/c9cde8652331559a3e470b42d9705a56f73aaa31/ph7.c#L38377-L38392
The address of local variable
resultis assigned to non-local variablespA->pNextandpB->pNext.Storing the address of a local variable in non-local memory can cause a dangling pointer bug if the address is used after the function returns.