X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_util.c;h=22a66916c28bfdf2a244ff017c4e8aa1ad0f6d7c;hp=c50ac55b3a977df0bf816c9bdbc5dc12c0f7af0b;hb=0e7fdbc857d4905e67a7bdf8fe5b6c773ee47a7b;hpb=7a4064cd15f6c6b34c1180e1bc51f0d0e90da320 diff --git a/src/odr_util.c b/src/odr_util.c index c50ac55..22a6691 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. - * - * $Id: odr_util.c,v 1.11 2007-04-12 13:52:57 adam Exp $ */ /** * \file odr_util.c @@ -14,7 +12,6 @@ #include #include -#include #include "odr-priv.h" #include @@ -50,7 +47,8 @@ Odr_oid *odr_oiddup_nmem(NMEM nmem, const Odr_oid *o) if (!o) return 0; - if (!(r = (int *)nmem_malloc(nmem, (oid_oidlen(o) + 1) * sizeof(int)))) + if (!(r = (Odr_oid *) + nmem_malloc(nmem, (oid_oidlen(o) + 1) * sizeof(Odr_oid)))) return 0; oid_oidcpy(r, o); return r; @@ -63,20 +61,13 @@ Odr_oid *odr_oiddup(ODR odr, const Odr_oid *o) Odr_oid *odr_getoidbystr_nmem(NMEM nmem, const char *str) { - int num = 1, i = 0; - const char *p = str; + Odr_oid oid[OID_SIZE]; Odr_oid *ret; - if (!isdigit(*(const unsigned char *) str)) + if (oid_dotstring_to_oid(str, oid)) return 0; - while ((p = strchr(p, '.'))) - num++, p++; - ret = (int *)nmem_malloc(nmem, sizeof(*ret)*(num + 1)); - p = str; - do - ret[i++] = atoi(p); - while ((p = strchr(p, '.')) && *++p); - ret[i] = -1; + ret = (Odr_oid *)nmem_malloc(nmem, sizeof(*ret)*(oid_oidlen(oid) + 1)); + oid_oidcpy(ret, oid); return ret; } @@ -125,6 +116,7 @@ char *odr_prepend(ODR o, const char *prefix, const char *old) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab