Commit fc28e0de authored by Neal Norwitz's avatar Neal Norwitz

Handle a NULL name properly.

Reported by Klocwork #67
parent 4b0a315c
...@@ -411,11 +411,11 @@ file_repr(PyFileObject *f) ...@@ -411,11 +411,11 @@ file_repr(PyFileObject *f)
if (PyUnicode_Check(f->f_name)) { if (PyUnicode_Check(f->f_name)) {
#ifdef Py_USING_UNICODE #ifdef Py_USING_UNICODE
PyObject *ret = NULL; PyObject *ret = NULL;
PyObject *name; PyObject *name = PyUnicode_AsUnicodeEscapeString(f->f_name);
name = PyUnicode_AsUnicodeEscapeString(f->f_name); const char *name_str = name ? PyString_AsString(name) : "?";
ret = PyString_FromFormat("<%s file u'%s', mode '%s' at %p>", ret = PyString_FromFormat("<%s file u'%s', mode '%s' at %p>",
f->f_fp == NULL ? "closed" : "open", f->f_fp == NULL ? "closed" : "open",
PyString_AsString(name), name_str,
PyString_AsString(f->f_mode), PyString_AsString(f->f_mode),
f); f);
Py_XDECREF(name); Py_XDECREF(name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment