diff options
Diffstat (limited to 'WWW/Library/Implementation/HTAssoc.c')
-rw-r--r-- | WWW/Library/Implementation/HTAssoc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTAssoc.c b/WWW/Library/Implementation/HTAssoc.c index 22c1126c..831b1967 100644 --- a/WWW/Library/Implementation/HTAssoc.c +++ b/WWW/Library/Implementation/HTAssoc.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTAssoc.c,v 1.10 2010/04/29 09:34:03 tom Exp $ + * $LynxId: HTAssoc.c,v 1.11 2016/11/24 15:29:50 tom Exp $ * * MODULE HTAssoc.c * ASSOCIATION LIST FOR STORING NAME-VALUE PAIRS. @@ -55,8 +55,6 @@ void HTAssocList_add(HTAssocList *alist, if (!(assoc = (HTAssoc *) malloc(sizeof(HTAssoc)))) outofmem(__FILE__, "HTAssoc_add"); - assert(assoc != NULL); - assoc->name = NULL; assoc->value = NULL; |