diff options
-rw-r--r-- | retrace/retrace.py | 5 | ||||
-rw-r--r-- | specs/winapi.py | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/retrace/retrace.py b/retrace/retrace.py index d09d72aa..70926c0b 100644 --- a/retrace/retrace.py +++ b/retrace/retrace.py @@ -478,10 +478,9 @@ class Retracer: # On release our reference when we reach Release() == 0 call in the # trace. if method.name == 'Release': - print ' if (call.ret->toUInt()) {' - print ' return;' + print ' if (call.ret->toUInt() == 0) {' + print ' retrace::delObj(call.arg(0));' print ' }' - print ' retrace::delObj(call.arg(0));' arg_names = ", ".join(method.argNames()) if method.type is not stdapi.Void: diff --git a/specs/winapi.py b/specs/winapi.py index 031c8347..4436c6dd 100644 --- a/specs/winapi.py +++ b/specs/winapi.py @@ -206,7 +206,7 @@ IUnknown = Interface("IUnknown") IUnknown.methods = ( StdMethod(HRESULT, "QueryInterface", ((REFIID, "riid"), Out(Pointer(ObjPointer(Void)), "ppvObj"))), - StdMethod(ULONG, "AddRef", (), sideeffects=False), + StdMethod(ULONG, "AddRef", ()), StdMethod(ULONG, "Release", ()), ) |