diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-13 11:00:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-13 11:00:13 (GMT) |
commit | eb7f17ba98bd89105f743da8af3037728027b4de (patch) | |
tree | e9f1de6715632fe894e2c0886b56197f12dedf13 | |
parent | c20c0a1e755698c4828b1aa5fcf4bfa18d54036b (diff) | |
parent | 2f1b92ba12fe6dcbad5a26a6dc6f6be837155049 (diff) | |
download | tcl-eb7f17ba98bd89105f743da8af3037728027b4de.zip tcl-eb7f17ba98bd89105f743da8af3037728027b4de.tar.gz tcl-eb7f17ba98bd89105f743da8af3037728027b4de.tar.bz2 |
Fix Tcl_DecrRefCount macro, not to refer to its objPtr parameter twice.
-rw-r--r-- | generic/tcl.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index e921ec5..b253db7 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -798,10 +798,7 @@ typedef struct Tcl_Obj { * whether an object is shared (i.e. has reference count > 1). Note: clients * should use Tcl_DecrRefCount() when they are finished using an object, and * should never call TclFreeObj() directly. TclFreeObj() is only defined and - * made public in tcl.h to support Tcl_DecrRefCount's macro definition. Note - * also that Tcl_DecrRefCount() refers to the parameter "obj" twice. This - * means that you should avoid calling it with an expression that is expensive - * to compute or has side effects. + * made public in tcl.h to support Tcl_DecrRefCount's macro definition. */ void Tcl_IncrRefCount _ANSI_ARGS_((Tcl_Obj *objPtr)); @@ -2315,7 +2312,12 @@ EXTERN void Tcl_GetMemoryInfo _ANSI_ARGS_((Tcl_DString *dsPtr)); * http://c2.com/cgi/wiki?TrivialDoWhileLoop */ # define Tcl_DecrRefCount(objPtr) \ - do { if (--(objPtr)->refCount <= 0) TclFreeObj(objPtr); } while(0) + do { \ + Tcl_Obj *obj = (objPtr); \ + if ((obj)->refCount-- < 2) { \ + TclFreeObj(obj); \ + } \ + } while(0) # define Tcl_IsShared(objPtr) \ ((objPtr)->refCount > 1) #endif |