Import Upstream version 1.0.24
This commit is contained in:
parent
413f90b815
commit
45b80e247e
45 changed files with 1342 additions and 341 deletions
|
|
@ -113,6 +113,9 @@ char *xstrdup(const char *s)
|
|||
{
|
||||
char *p;
|
||||
|
||||
if(!s)
|
||||
return NULL;
|
||||
|
||||
p = strdup(s);
|
||||
if(!p)
|
||||
xalloc_fail ((int)strlen(s));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue