This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients christian.heimes, eric.snow, serhiy.storchaka
Date 2013-07-21.13:06:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374411965.33.0.886983225956.issue15905@psf.upfronthosting.co.za>
In-reply-to
Content
> -                wcscpy(q+1, link);
> +                wcsncpy(q+1, link, MAXPATHLEN);
> +                argv0copy[2*MAXPATHLEN] = L'\0';

Should be `q[MAXPATHLEN] = L'\0';`. Otherwise there will be a bug when a length of link is MAXPATHLEN.
History
Date User Action Args
2013-07-21 13:06:05serhiy.storchakasetrecipients: + serhiy.storchaka, christian.heimes, eric.snow
2013-07-21 13:06:05serhiy.storchakasetmessageid: <1374411965.33.0.886983225956.issue15905@psf.upfronthosting.co.za>
2013-07-21 13:06:05serhiy.storchakalinkissue15905 messages
2013-07-21 13:06:05serhiy.storchakacreate