Issue #25893: Removed unused variable reqdSize.
Added test for return code for the last RegQueryValueExW.
This commit is contained in:
parent
3dc74bf703
commit
e0cb9da9d6
|
@ -321,7 +321,6 @@ getpythonregpath(HKEY keyBase, int skipcore)
|
|||
dataBuf = PyMem_RawMalloc((dataSize+1) * sizeof(WCHAR));
|
||||
if (dataBuf) {
|
||||
WCHAR *szCur = dataBuf;
|
||||
DWORD reqdSize = dataSize;
|
||||
/* Copy our collected strings */
|
||||
for (index=0;index<numKeys;index++) {
|
||||
if (index > 0) {
|
||||
|
@ -349,6 +348,10 @@ getpythonregpath(HKEY keyBase, int skipcore)
|
|||
*/
|
||||
rc = RegQueryValueExW(newKey, NULL, 0, NULL,
|
||||
(LPBYTE)szCur, &dataSize);
|
||||
if (rc != ERROR_SUCCESS) {
|
||||
PyMem_RawFree(dataBuf);
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
/* And set the result - caller must free */
|
||||
retval = dataBuf;
|
||||
|
|
Loading…
Reference in New Issue