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 eric.smith
Recipients amaury.forgeotdarc, atuining, eric.smith, ezio.melotti, loewis, markm
Date 2011-05-02.14:31:37
SpamBayes Score 7.835514e-08
Marked as misclassified No
Message-id <1304346698.45.0.918863283611.issue1104@psf.upfronthosting.co.za>
In-reply-to
Content
This patch seems okay to me, as far as it goes. I'd like to hear Martin's feedback, but I think it should be committed.

And I realize the rest of this message doesn't apply to the patch, but it does address other problems in summary_getproperty(). At least one of these led to the original problem with the truncated character.

1. It's not clear to me that the malloc() call only occurs if the type is VT_LPSTR. But that's the only case where free() is called. I think it would be better to move the call to free() to a cleanup section at the end of the function.

2. The status is never checked for success, just for one specific failure. I think both calls to MsiSummaryInfoGetProperty should be looking for ERROR_SUCCESS.

3. I don't think VT_FILETIME is special enough for its own error message. It should just be caught with all other unknown types.

Maybe these last 3 should get their own new issue.
History
Date User Action Args
2011-05-02 14:31:38eric.smithsetrecipients: + eric.smith, loewis, amaury.forgeotdarc, atuining, ezio.melotti, markm
2011-05-02 14:31:38eric.smithsetmessageid: <1304346698.45.0.918863283611.issue1104@psf.upfronthosting.co.za>
2011-05-02 14:31:37eric.smithlinkissue1104 messages
2011-05-02 14:31:37eric.smithcreate