Commit 2c13d5c0 authored by Raymond Hettinger's avatar Raymond Hettinger

Removed unnecessary conditional (spotted by Neal Norwitz).

parent dee1d5e1
...@@ -882,7 +882,7 @@ r_object(RFILE *p) ...@@ -882,7 +882,7 @@ r_object(RFILE *p)
break; break;
} }
} }
retval = (v == NULL) ? NULL : v; retval = v;
break; break;
case TYPE_CODE: case TYPE_CODE:
......
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