Kaydet (Commit) f072b45e authored tarafından 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.
üst b333640a
......@@ -3753,7 +3753,7 @@ utime_read_time_arguments(utime_arguments *ua)
fail:
if (ua->converter)
Py_DECREF(ua->path);
Py_DECREF(*ua->path);
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