(options, minidump_name)
| 4159 | |
| 4160 | |
| 4161 | def AnalyzeMinidump(options, minidump_name): |
| 4162 | reader = MinidumpReader(options, minidump_name) |
| 4163 | # Use a separate function to prevent leaking the minidump buffer through |
| 4164 | # ctypes in local variables. |
| 4165 | _AnalyzeMinidump(options, reader) |
| 4166 | reader.Dispose() |
| 4167 | |
| 4168 | |
| 4169 | def _AnalyzeMinidump(options, reader): |
no test coverage detected
searching dependent graphs…