@@ -123,50 +123,58 @@ psutil_cpu_freq(PyObject *self, PyObject *args) {
123
123
uint32_t eMin ;
124
124
uint32_t max ;
125
125
kern_return_t status ;
126
+ CFDictionaryRef matching = NULL ;
127
+ CFTypeRef pCoreRef = NULL ;
128
+ CFTypeRef eCoreRef = NULL ;
129
+ io_iterator_t iter = 0 ;
130
+ io_registry_entry_t entry = 0 ;
126
131
127
- CFDictionaryRef matching = IOServiceMatching ("AppleARMIODevice" );
132
+ matching = IOServiceMatching ("AppleARMIODevice" );
128
133
if (matching == 0 ) {
129
134
return PyErr_Format (PyExc_RuntimeError , "IOServiceMatching call failed, 'AppleARMIODevice' not found" );
130
135
}
131
- io_iterator_t iter ;
132
136
133
137
status = IOServiceGetMatchingServices (kIOMainPortDefault , matching , & iter );
134
138
if (status != KERN_SUCCESS ) {
135
- return PyErr_Format (PyExc_RuntimeError , "IOServiceGetMatchingServices call failed" );
139
+ PyErr_Format (PyExc_RuntimeError , "IOServiceGetMatchingServices call failed" );
140
+ goto error ;
136
141
}
137
142
138
- io_registry_entry_t entry ;
139
143
while ((entry = IOIteratorNext (iter ))) {
140
144
io_name_t name ;
141
145
status = IORegistryEntryGetName (entry , name );
142
146
if (status != KERN_SUCCESS ) {
147
+ if (entry )
148
+ IOObjectRelease (entry );
143
149
continue ;
144
150
}
145
151
if (strcmp (name , "pmgr" ) == 0 ) {
146
152
break ;
147
153
}
154
+ IOObjectRelease (entry );
148
155
}
149
156
150
157
if (entry == 0 ) {
151
- return PyErr_Format (PyExc_RuntimeError , "'pmgr' entry was not found in AppleARMIODevice service" );
158
+ PyErr_Format (PyExc_RuntimeError , "'pmgr' entry was not found in AppleARMIODevice service" );
159
+ goto error ;
152
160
}
153
161
154
- CFTypeRef pCoreRef = IORegistryEntryCreateCFProperty (entry , CFSTR ("voltage-states5-sram" ), kCFAllocatorDefault , 0 );
162
+ pCoreRef = IORegistryEntryCreateCFProperty (entry , CFSTR ("voltage-states5-sram" ), kCFAllocatorDefault , 0 );
155
163
if (!pCoreRef ) {
156
- return PyErr_Format (PyExc_RuntimeError , "'voltage-states5-sram' property not found" );
164
+ PyErr_Format (PyExc_RuntimeError , "'voltage-states5-sram' property not found" );
165
+ goto error ;
157
166
}
158
167
159
- CFTypeRef eCoreRef = IORegistryEntryCreateCFProperty (entry , CFSTR ("voltage-states1-sram" ), kCFAllocatorDefault , 0 );
168
+ eCoreRef = IORegistryEntryCreateCFProperty (entry , CFSTR ("voltage-states1-sram" ), kCFAllocatorDefault , 0 );
160
169
if (!eCoreRef ) {
161
- return PyErr_Format (PyExc_RuntimeError , "'voltage-states1-sram' property not found" );
170
+ PyErr_Format (PyExc_RuntimeError , "'voltage-states1-sram' property not found" );
171
+ goto error ;
162
172
}
163
173
164
- IOObjectRelease (iter );
165
- IOObjectRelease (entry );
166
-
167
174
size_t pCoreLength = CFDataGetLength (pCoreRef );
168
175
if (pCoreLength < 8 ) {
169
- return PyErr_Format (PyExc_RuntimeError , "expected 'voltage-states5-sram' buffer to have at least size 8" );
176
+ PyErr_Format (PyExc_RuntimeError , "expected 'voltage-states5-sram' buffer to have at least size 8" );
177
+ goto error ;
170
178
}
171
179
172
180
CFDataGetBytes (pCoreRef , CFRangeMake (0 , 4 ), (UInt8 * ) & pMin );
@@ -176,14 +184,23 @@ psutil_cpu_freq(PyObject *self, PyObject *args) {
176
184
min = pMin < eMin ? pMin : eMin ;
177
185
curr = max ;
178
186
179
- CFRelease (pCoreRef );
180
- CFRelease (eCoreRef );
181
187
182
188
return Py_BuildValue (
183
189
"IKK" ,
184
190
curr / 1000 / 1000 ,
185
191
min / 1000 / 1000 ,
186
192
max / 1000 / 1000 );
193
+ error :
194
+ if (pCoreRef != NULL )
195
+ CFRelease (pCoreRef );
196
+ if (eCoreRef != NULL )
197
+ CFRelease (eCoreRef );
198
+ if (iter )
199
+ IOObjectRelease (iter );
200
+ if (entry )
201
+ IOObjectRelease (entry );
202
+ return NULL ;
203
+
187
204
}
188
205
#else
189
206
PyObject *
0 commit comments