X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fsrwutil.c;h=36d88b6938ba72da92c61fd9f04424922d0c02a6;hp=b0d387e2bb46b6ffbd55af3fe2122b50d0e4599d;hb=ae80b3d484b49ba877cb79f792fd217e1b7e9ffd;hpb=aff89a8d3531bee9e51bcdb9a244ff9b38fc1c6d diff --git a/src/srwutil.c b/src/srwutil.c index b0d387e..36d88b6 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ /** @@ -13,24 +13,16 @@ #include #include -/** \brief decodes HTTP path (which should hold SRU database) - \param n memory for returned result - \param uri URI path (up to but not including ?) - \param len URI len (up to but not including ?) - \returns ODR allocated database -*/ static char *yaz_decode_sru_dbpath_odr(ODR n, const char *uri, size_t len) { - char *ret = odr_malloc(n, strlen(uri) + 1); - yaz_decode_uri_component(ret, uri, len); - return ret; + return odr_strdupn(n, uri, len); } void yaz_encode_sru_dbpath_buf(char *dst, const char *db) { assert(db); *dst = '/'; - yaz_encode_uri_component(dst+1, db); + strcpy(dst+1, db); } char *yaz_encode_sru_dbpath_odr(ODR out, const char *db)