mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Patch #1572724: fix typo ('=' instead of '==') in _msi.c.
This commit is contained in:
parent
b3f37556bc
commit
412a9ea10e
2 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue