/*
- * Copyright (c) 1995-2003, Index Data
+ * Copyright (c) 1995-2004, Index Data
* See the file LICENSE for details.
*
- * $Id: odr_mem.c,v 1.1 2003-10-27 12:21:33 adam Exp $
+ * $Id: odr_mem.c,v 1.2 2004-09-30 11:06:41 adam Exp $
*/
#if HAVE_CONFIG_H
#include <config.h>
char *odr_strdup(ODR o, const char *str)
{
+ if (o && !o->mem)
+ o->mem = nmem_create();
return nmem_strdup(o->mem, str);
}
int *odr_intdup(ODR o, int v)
{
+ if (o && !o->mem)
+ o->mem = nmem_create();
return nmem_intdup(o->mem, v);
}