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
Fix parser crash on pointer dereference assignment
Fixed a parser crash that occurred when encountering pointer dereference
assignment statements like '*ap = 0;'. The issue was that the parser
was trying to find a function named '*ap' before properly handling
the pointer dereference syntax.
The fix adds a has_asterisk flag to detect when the statement begins
with an asterisk operator and skips the function call check in this case,
allowing the existing pointer dereference handling code to process
the statement correctly.
0 commit comments