Kaydet (Commit) 412a9ea1 authored tarafından Georg Brandl's avatar Georg Brandl

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

üst b3f37556
...@@ -126,6 +126,8 @@ Library ...@@ -126,6 +126,8 @@ Library
Extension Modules Extension Modules
----------------- -----------------
- Patch #1572724: fix typo ('=' instead of '==') in _msi.c.
- Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault - Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault
when encoding non-BMP unicode characters. when encoding non-BMP unicode characters.
......
...@@ -495,7 +495,7 @@ summary_getproperty(msiobj* si, PyObject *args) ...@@ -495,7 +495,7 @@ summary_getproperty(msiobj* si, PyObject *args)
status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival, status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival,
&fval, sval, &ssize); &fval, sval, &ssize);
if (status = ERROR_MORE_DATA) { if (status == ERROR_MORE_DATA) {
sval = malloc(ssize); sval = malloc(ssize);
status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival, status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival,
&fval, sval, &ssize); &fval, sval, &ssize);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment