mirror of https://github.com/python/cpython
Fix for fatal errors in os.*utime*()
The address of an object was being decreffed instead of the object.
This commit is contained in:
parent
b333640aba
commit
f072b45e34
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue