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

The address of an object was being decreffed instead of the object.
This commit is contained in:
Richard Oudkerk 2012-05-04 12:01:31 +01:00
parent b333640aba
commit f072b45e34
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}