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
Line 49 of procnamemodule.c line 49 is:
strncpy(argv[0], name , strlen(name));
For a really long name this risks overwriting other arguments. It seems
safer to do:
strncpy(argv[0], name , strlen(argv[0]));
Original issue reported on code.google.com by hroeh...@gmail.com on 10 Dec 2008 at 6:17
Original issue reported on code.google.com by
hroeh...@gmail.comon 10 Dec 2008 at 6:17