X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=mem.c;h=12ece3874e8d5063f6692a670d971fa9e30787ae;hb=d60c3f162beb6a82545509f282585b6517933ae6;hp=90ab67c7201d97dd9bb116999745b61d5e7b638d;hpb=6ddbb3991cc5ad6089410078695f574b2bd8388e;p=ir-tcl-moved-to-github.git diff --git a/mem.c b/mem.c index 90ab67c..12ece38 100644 --- a/mem.c +++ b/mem.c @@ -5,7 +5,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: mem.c,v $ - * Revision 1.1 1995-08-04 11:32:40 adam + * Revision 1.2 1995-08-29 15:30:15 adam + * Work on GRS records. + * + * Revision 1.1 1995/08/04 11:32:40 adam * More work on output queue. Memory related routines moved * to mem.c * @@ -37,14 +40,22 @@ void *ir_tcl_malloc (size_t n) */ int ir_tcl_strdup (Tcl_Interp *interp, char** p, const char *s) { + size_t len; + if (!s) { *p = NULL; return TCL_OK; } - *p = malloc (strlen(s)+1); + len = strlen(s)+1; + *p = malloc (len); if (!*p) { + if (!interp) + { + logf (LOG_FATAL, "Out of memory in strdup. %ld bytes", len); + exit (1); + } interp->result = "strdup fail"; return TCL_ERROR; }