[issue22391] MSILIB truncates last character in summary information stream

2016-08-05 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. This is a duplicate of issue 1104. -- nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker ___

[issue22391] MSILIB truncates last character in summary information stream

2015-01-06 Thread Idoa
Idoa added the comment: Encountered this issue also in python 2.7.7. last character is replaced with \x00. reproduction is exactly as stated by Kevin.Phillips -- nosy: +Idoa ___ Python tracker ___

[issue22391] MSILIB truncates last character in summary information stream

2014-09-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue22391] MSILIB truncates last character in summary information stream

2014-09-11 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, tim.golden, zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue22391] MSILIB truncates last character in summary information stream

2014-09-11 Thread Kevin Phillips
Kevin Phillips added the comment: I should mention that I did discover some source code on GitHub, presumably for this wrapper module, and I believe I found a few questionable parts in the logic for this library that may help explain the cause of this problem: https://github.com/python-git/pyt

[issue22391] MSILIB truncates last character in summary information stream

2014-09-11 Thread Kevin Phillips
New submission from Kevin Phillips: I recently exploited a subtle bug with the msilib module's GetProperty method on the SummaryInformation class. When retrieving string-typed properties from the stream the last character in the string gets truncated, replaced by a null-byte. I am using Pytho