Fix sample PQF
[yaz-moved-to-github.git] / odr / odr_mem.c
index 9b2c7cc..2ec348a 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (c) 1995-2002, Index Data
+ * Copyright (c) 1995-2003, Index Data
  * See the file LICENSE for details.
  *
- * $Id: odr_mem.c,v 1.20 2002-07-25 12:51:08 adam Exp $
+ * $Id: odr_mem.c,v 1.23 2003-03-18 13:34:35 adam Exp $
  */
 #if HAVE_CONFIG_H
 #include <config.h>
@@ -37,6 +37,11 @@ char *odr_strdup(ODR o, const char *str)
     return nmem_strdup(o->mem, str);
 }
 
+char *odr_strdupn(ODR o, const char *str, size_t n)
+{
+    return nmem_strdupn(o->mem, str, n);
+}
+
 int *odr_intdup(ODR o, int v)
 {
     return nmem_intdup(o->mem, v);
@@ -78,7 +83,7 @@ int odr_write(ODR o, unsigned char *buf, int bytes)
 {
     if (o->pos + bytes >= o->size && odr_grow_block(o, bytes))
     {
-       o->error = OSPACE;
+        odr_seterror(o, OSPACE, 40);
        return -1;
     }
     memcpy(o->buf + o->pos, buf, bytes);
@@ -96,7 +101,7 @@ int odr_seek(ODR o, int whence, int offset)
        offset += o->top;
     if (offset > o->size && odr_grow_block(o, offset - o->size))
     {
-       o->error = OSPACE;
+        odr_seterror(o, OSPACE, 41);
        return -1;
     }
     o->pos = offset;