summaryrefslogtreecommitdiff
path: root/src/sym.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sym.c')
-rw-r--r--src/sym.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sym.c b/src/sym.c
index e6f556c..8d6b278 100644
--- a/src/sym.c
+++ b/src/sym.c
@@ -120,7 +120,7 @@ void cclinstal (unsigned char ccltxt[], int cclnum)
* called unless the symbol is new.
*/
- (void) addsym ((char *) copy_unsigned_string (ccltxt),
+ (void) addsym (xstrdup(ccltxt),
(char *) 0, cclnum, ccltab, CCL_HASH_SIZE);
}
@@ -182,7 +182,7 @@ void ndinstal (const char *name, unsigned char definition[])
{
if (addsym (xstrdup(name),
- (char *) copy_unsigned_string (definition), 0,
+ xstrdup(definition), 0,
ndtbl, NAME_TABLE_HASH_SIZE))
synerr (_("name defined twice"));
}