diff options
Diffstat (limited to 'protocols/JabberG/MString.cpp')
-rw-r--r-- | protocols/JabberG/MString.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/MString.cpp b/protocols/JabberG/MString.cpp index 524231fde2..773871d1a5 100644 --- a/protocols/JabberG/MString.cpp +++ b/protocols/JabberG/MString.cpp @@ -75,7 +75,7 @@ bool CMStringData::IsShared() const void CMStringData::Lock()
{
nRefs--; // Locked buffers can't be shared, so no interlocked operation necessary
- if( nRefs == 0 )
+ if ( nRefs == 0 )
nRefs = -1;
}
|