mirror of
https://github.com/cc65/cc65.git
synced 2025-08-12 17:25:11 +00:00
Fixed a bug in SP_Add.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5246 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -236,7 +236,7 @@ unsigned SP_Add (StringPool* P, const StrBuf* S)
|
|||||||
StringPoolEntry* E = HT_Find (&P->Tab, S);
|
StringPoolEntry* E = HT_Find (&P->Tab, S);
|
||||||
|
|
||||||
/* Did we find it? */
|
/* Did we find it? */
|
||||||
if (E != 0) {
|
if (E == 0) {
|
||||||
|
|
||||||
/* We didn't find the entry, so create a new one */
|
/* We didn't find the entry, so create a new one */
|
||||||
E = NewStringPoolEntry (S, CollCount (&P->Entries));
|
E = NewStringPoolEntry (S, CollCount (&P->Entries));
|
||||||
@@ -280,7 +280,7 @@ unsigned SP_GetCount (const StringPool* P)
|
|||||||
/* Return the number of strings in the pool */
|
/* Return the number of strings in the pool */
|
||||||
{
|
{
|
||||||
return CollCount (&P->Entries);
|
return CollCount (&P->Entries);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user