diff options
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | PC/_msi.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -126,6 +126,8 @@ Library Extension Modules ----------------- +- Patch #1572724: fix typo ('=' instead of '==') in _msi.c. + - Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault when encoding non-BMP unicode characters. @@ -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); |