Strings in rom are initialized with usage count 9999.
decstr does not touch these at all.
This commit is contained in:
parent
4d93f6d900
commit
e4998f5ad8
@ -36,6 +36,8 @@ _decstr(str)
|
||||
String *str;
|
||||
{
|
||||
ok(str);
|
||||
/* Strings in ROM are initialized with this count */
|
||||
if ( str->strcount==9999 ) return ;
|
||||
str->strcount--;
|
||||
if(str->strcount<=0) _delstr(str);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user