From: Georg Brandl Date: Mon, 9 Oct 2006 19:03:06 +0000 (+0000) Subject: Patch #1572724: fix typo ('=' instead of '==') in _msi.c. X-Git-Tag: v2.6a1~2583 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=412a9ea10e786f61b9d9f144b9296d30b5ad6bb9;p=python Patch #1572724: fix typo ('=' instead of '==') in _msi.c. --- diff --git a/Misc/NEWS b/Misc/NEWS index 9f7111fe76..0b9aade4f4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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. diff --git a/PC/_msi.c b/PC/_msi.c index 35f137a24a..f4af92af8a 100644 --- a/PC/_msi.c +++ b/PC/_msi.c @@ -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);