Smallish
[yaz-moved-to-github.git] / odr / odr_util.c
index 16dc984..7a07775 100644 (file)
@@ -1,13 +1,15 @@
-#include <odr.h>
 #include <stdlib.h>
-
-void *nalloc(ODR o, int size) { return malloc(size); }
+#include <odr.h>
+#include <oid.h>
 
 char *odr_indent(ODR o)
 {
     static char buf[512];
+    int i = o->indent;
 
     memset(buf, ' ', 512);
+    if (i >= 128)
+       i = 127;
     buf[o->indent * 4] = 0;
     return buf;
 }
@@ -30,3 +32,15 @@ int odp_more_chunks(ODR o, unsigned char *base, int len)
     else
         return o->bp - base < len;
 }
+
+Odr_oid *odr_oiddup(ODR odr, Odr_oid *o)
+{
+    Odr_oid *r;
+
+    if (!o)
+       return 0;
+    if (!(r = odr_malloc(odr, (oid_oidlen(o) + 1) * sizeof(int))))
+       return 0;
+    oid_oidcpy(r, o);
+    return r;
+}