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
In pullproto.pl lack of escaping $function in this match attempt is causing problems:
if ($temp[$linenum - 2] =~ m/$function/)
after changing this to:
if ($temp[$linenum - 2] =~ m/\Q$function\E/)
it seems to be working.
In pullproto.pl lack of escaping $function in this match attempt is causing problems:
if ($temp[$linenum - 2] =~ m/$function/)
after changing this to:
if ($temp[$linenum - 2] =~ m/\Q$function\E/)
it seems to be working.