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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, gpolo
Date 2008-08-19.16:13:37
SpamBayes Score 9.234314e-05
Marked as misclassified No
Message-id <1219162418.23.0.654026123543.issue3600@psf.upfronthosting.co.za>
In-reply-to
Content
Also, I was bitten by a runtime error because of an uninitialized variable.
It seems that the Microsoft compiler is able to detect uninitialized
values, in debug mode this causes a dialog to appear and IDLE crashes
when opening the "Save file" dialog.

In generic/tkFileFilter.c, the line 341
    if (ostypeCount > 0 && ostypeList != NULL)
should be replaced by
    if (ostypeList != NULL && ostypeCount > 0)

The problem still exists with 8.5.4.
History
Date User Action Args
2008-08-19 16:13:38amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, gpolo
2008-08-19 16:13:38amaury.forgeotdarcsetmessageid: <1219162418.23.0.654026123543.issue3600@psf.upfronthosting.co.za>
2008-08-19 16:13:37amaury.forgeotdarclinkissue3600 messages
2008-08-19 16:13:37amaury.forgeotdarccreate