aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fbasicstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fbasicstring.h b/src/fbasicstring.h
index 1c1f8a2..5271b62 100644
--- a/src/fbasicstring.h
+++ b/src/fbasicstring.h
@@ -1467,8 +1467,8 @@ namespace Bu
1467 return true; 1467 return true;
1468 if( core->pFirst == pData.core->pFirst ) 1468 if( core->pFirst == pData.core->pFirst )
1469 return true; 1469 return true;
1470 if( core->pFirst == NULL ) 1470 if( (core->pFirst == 0 && pData.core->nLength == 0) )
1471 return false; 1471 return true;
1472 if( core->nLength != pData.core->nLength ) 1472 if( core->nLength != pData.core->nLength )
1473 return false; 1473 return false;
1474 1474