X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_util.c;h=39591063d28b3856fb2b41665cb8a1ec04bb34b9;hp=17d1582bc7676e59e5b1bc7a2c548a747bbfc42f;hb=df60350f9737923dce347e59b9c4cafa789ab7aa;hpb=5242cb5a8634bfa38b9333ff7f903e718ac6e292 diff --git a/src/odr_util.c b/src/odr_util.c index 17d1582..3959106 100644 --- a/src/odr_util.c +++ b/src/odr_util.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ /** @@ -26,22 +26,22 @@ void odr_prname(ODR o, const char *name) odr_printf(o, "%s ", name); } -int odp_more_chunks(ODR o, const unsigned char *base, int len) +int odp_more_chunks(ODR o, const char *base, int len) { if (!len) return 0; if (len < 0) /* indefinite length */ { - if (*o->bp == 0 && *(o->bp + 1) == 0) + if (*o->op->bp == 0 && *(o->op->bp + 1) == 0) { - o->bp += 2; + o->op->bp += 2; return 0; } else return 1; } else - return o->bp - base < len; + return o->op->bp - base < len; } Odr_oid *odr_oiddup_nmem(NMEM nmem, const Odr_oid *o) @@ -107,13 +107,12 @@ char *odr_prepend(ODR o, const char *prefix, const char *old) char *res = (char*) odr_malloc (o, olen + plen + 2); *res = '\0'; - if (prefix != 0) - strcpy (res, prefix); - if (prefix != 0 && old != 0) - strcat (res, "/"); - if (old !=0) - strcat (res, old); - + if (plen > 0) + strcpy(res, prefix); + if (plen > 0 && old != 0) + strcat(res, "/"); + if (old != 0) + strcat(res, old); return res; } /*