diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-06-01 00:16:20 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2019-06-01 00:16:20 (GMT) |
commit | 549e55a3086d04c13da9b6f33214f6399681292a (patch) | |
tree | d3c4a93edc5b6226e0662fde023c861d7352e4fb /PC | |
parent | ed9f3562b637a59b9000abbceee5ae369d35444d (diff) | |
download | cpython-549e55a3086d04c13da9b6f33214f6399681292a.zip cpython-549e55a3086d04c13da9b6f33214f6399681292a.tar.gz cpython-549e55a3086d04c13da9b6f33214f6399681292a.tar.bz2 |
bpo-12202: Properly check MsiSummaryInfoGetProperty() calls in msilib (GH-13711)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/_msi.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -571,6 +571,9 @@ summary_getproperty(msiobj* si, PyObject *args) status = MsiSummaryInfoGetProperty(si->h, field, &type, &ival, &fval, sval, &ssize); } + if (status != ERROR_SUCCESS) { + return msierror(status); + } switch(type) { case VT_I2: |