Commit f072b45e authored by Richard Oudkerk's avatar Richard Oudkerk

Fix for fatal errors in os.*utime*()

The address of an object was being decreffed instead of the object.
parent b333640a
...@@ -3753,7 +3753,7 @@ utime_read_time_arguments(utime_arguments *ua) ...@@ -3753,7 +3753,7 @@ utime_read_time_arguments(utime_arguments *ua)
fail: fail:
if (ua->converter) if (ua->converter)
Py_DECREF(ua->path); Py_DECREF(*ua->path);
return return_value; return return_value;
} }
......
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