Patch #1572724: fix typo ('=' instead of '==') in _msi.c.

This commit is contained in:
Georg Brandl 2006-10-09 19:03:06 +00:00
parent b3f37556bc
commit 412a9ea10e
2 changed files with 3 additions and 1 deletions

View file

@ -495,7 +495,7 @@ summary_getproperty(msiobj* si, PyObject *args)
status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival,
&fval, sval, &ssize);
if (status = ERROR_MORE_DATA) {
if (status == ERROR_MORE_DATA) {
sval = malloc(ssize);
status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival,
&fval, sval, &ssize);