1
1
#include "Python.h"
2
- #include "pycore_dict.h" // _PyDict_GetItemStringWithError()
3
2
#include "pycore_fileutils.h" // _Py_HasFileSystemDefaultEncodeErrors
4
3
#include "pycore_getopt.h" // _PyOS_GetOpt()
5
4
#include "pycore_initconfig.h" // _PyStatus_OK()
@@ -1065,8 +1064,11 @@ _PyConfig_AsDict(const PyConfig *config)
1065
1064
static PyObject *
1066
1065
config_dict_get (PyObject * dict , const char * name )
1067
1066
{
1068
- PyObject * item = _PyDict_GetItemStringWithError (dict , name );
1069
- if (item == NULL && !PyErr_Occurred ()) {
1067
+ PyObject * item ;
1068
+ if (PyDict_GetItemStringRef (dict , name , & item ) < 0 ) {
1069
+ return NULL ;
1070
+ }
1071
+ if (item == NULL ) {
1070
1072
PyErr_Format (PyExc_ValueError , "missing config key: %s" , name );
1071
1073
return NULL ;
1072
1074
}
@@ -1096,6 +1098,7 @@ config_dict_get_int(PyObject *dict, const char *name, int *result)
1096
1098
return -1 ;
1097
1099
}
1098
1100
int value = _PyLong_AsInt (item );
1101
+ Py_DECREF (item );
1099
1102
if (value == -1 && PyErr_Occurred ()) {
1100
1103
if (PyErr_ExceptionMatches (PyExc_TypeError )) {
1101
1104
config_dict_invalid_type (name );
@@ -1118,6 +1121,7 @@ config_dict_get_ulong(PyObject *dict, const char *name, unsigned long *result)
1118
1121
return -1 ;
1119
1122
}
1120
1123
unsigned long value = PyLong_AsUnsignedLong (item );
1124
+ Py_DECREF (item );
1121
1125
if (value == (unsigned long )-1 && PyErr_Occurred ()) {
1122
1126
if (PyErr_ExceptionMatches (PyExc_TypeError )) {
1123
1127
config_dict_invalid_type (name );
@@ -1140,27 +1144,33 @@ config_dict_get_wstr(PyObject *dict, const char *name, PyConfig *config,
1140
1144
if (item == NULL ) {
1141
1145
return -1 ;
1142
1146
}
1147
+
1143
1148
PyStatus status ;
1144
1149
if (item == Py_None ) {
1145
1150
status = PyConfig_SetString (config , result , NULL );
1146
1151
}
1147
1152
else if (!PyUnicode_Check (item )) {
1148
1153
config_dict_invalid_type (name );
1149
- return -1 ;
1154
+ goto error ;
1150
1155
}
1151
1156
else {
1152
1157
wchar_t * wstr = PyUnicode_AsWideCharString (item , NULL );
1153
1158
if (wstr == NULL ) {
1154
- return -1 ;
1159
+ goto error ;
1155
1160
}
1156
1161
status = PyConfig_SetString (config , result , wstr );
1157
1162
PyMem_Free (wstr );
1158
1163
}
1159
1164
if (_PyStatus_EXCEPTION (status )) {
1160
1165
PyErr_NoMemory ();
1161
- return -1 ;
1166
+ goto error ;
1162
1167
}
1168
+ Py_DECREF (item );
1163
1169
return 0 ;
1170
+
1171
+ error :
1172
+ Py_DECREF (item );
1173
+ return -1 ;
1164
1174
}
1165
1175
1166
1176
@@ -1174,6 +1184,7 @@ config_dict_get_wstrlist(PyObject *dict, const char *name, PyConfig *config,
1174
1184
}
1175
1185
1176
1186
if (!PyList_CheckExact (list )) {
1187
+ Py_DECREF (list );
1177
1188
config_dict_invalid_type (name );
1178
1189
return -1 ;
1179
1190
}
@@ -1207,10 +1218,12 @@ config_dict_get_wstrlist(PyObject *dict, const char *name, PyConfig *config,
1207
1218
goto error ;
1208
1219
}
1209
1220
_PyWideStringList_Clear (& wstrlist );
1221
+ Py_DECREF (list );
1210
1222
return 0 ;
1211
1223
1212
1224
error :
1213
1225
_PyWideStringList_Clear (& wstrlist );
1226
+ Py_DECREF (list );
1214
1227
return -1 ;
1215
1228
}
1216
1229
0 commit comments