- Timestamp:
- Oct 2, 2020 11:55:28 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/tests/TestHashtables.cpp
r86417 r86418 290 290 printf(">>"); 291 291 292 nsrefcnt = --refcount_;292 nsrefcnt newrefcount = --refcount_; 293 293 printf("IFoo@%p::Release(), refcount --> %d\n", 294 294 NS_STATIC_CAST(void*, this), nsrefcnt); 295 295 296 if ( !n srefcnt )296 if ( !newrefcount ) 297 297 { 298 298 printf(" delete IFoo@%p\n", NS_STATIC_CAST(void*, this)); … … 303 303 printf(" delete IFoo@%p\n", NS_STATIC_CAST(void*, this)); 304 304 305 return n srefcnt;305 return newrefcount; 306 306 } 307 307
Note:
See TracChangeset
for help on using the changeset viewer.