X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsrw.c;h=44e8c176998400e5212417fac624d1a2a0c31634;hb=d962efcd2c1f0a3abfb0c40e81e298d69a9757bd;hp=bc3c7474ff314e0754154bb7a234f48e115d8ce6;hpb=6e3d70edfadd110351b71466c51632e288e31773;p=yaz-moved-to-github.git diff --git a/src/srw.c b/src/srw.c index bc3c747..44e8c17 100644 --- a/src/srw.c +++ b/src/srw.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. */ /** @@ -192,7 +192,7 @@ static int match_xsd_integer(xmlNodePtr ptr, const char *elem, ODR o, ptr = ptr->children; if (!ptr || ptr->type != XML_TEXT_NODE) return 0; - *val = odr_intdup(o, atoi((const char *) ptr->content)); + *val = odr_intdup(o, odr_atoi((const char *) ptr->content)); return 1; }