_tracemalloc: filename cannot be NULL

This commit is contained in:
Victor Stinner 2016-03-15 14:28:04 +01:00
parent 32eb840a42
commit 7105e9f3de
1 changed files with 2 additions and 2 deletions

View File

@ -65,6 +65,8 @@ __attribute__((packed))
_declspec(align(4))
#endif
{
/* filename cannot be NULL: "<unknown>" is used if the Python frame
filename is NULL */
PyObject *filename;
int lineno;
} frame_t;
@ -987,8 +989,6 @@ frame_to_pyobject(frame_t *frame)
if (frame_obj == NULL)
return NULL;
if (frame->filename == NULL)
frame->filename = Py_None;
Py_INCREF(frame->filename);
PyTuple_SET_ITEM(frame_obj, 0, frame->filename);