From: cristy Date: Sat, 9 Nov 2013 02:28:05 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~3139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f52b3f54151b45ebf59771e915f9ea63c32cf0e;p=imagemagick --- diff --git a/MagickCore/string.c b/MagickCore/string.c index 37a5996f5..d0d7bfe77 100644 --- a/MagickCore/string.c +++ b/MagickCore/string.c @@ -2249,8 +2249,7 @@ MagickExport char **StringToArgv(const char *text,int *argc) % % The format of the StringToArrayOfDoubles method is: % -% double *StringToArrayOfDoubles(const char *string,size_t *count, -% ExceptionInfo *exception) +% double *StringToArrayOfDoubles(const char *string,size_t *count) % % A description of each parameter follows: % @@ -2258,11 +2257,8 @@ MagickExport char **StringToArgv(const char *text,int *argc) % % o count: returns number of arguments in returned array % -% o exception: return 'memory failure' exceptions -% */ -MagickExport double *StringToArrayOfDoubles(const char *string,ssize_t *count, - ExceptionInfo *magick_unused(exception)) +MagickExport double *StringToArrayOfDoubles(const char *string,ssize_t *count) { char *q; diff --git a/MagickCore/string_.h b/MagickCore/string_.h index d9fbf6414..ed0e7a474 100644 --- a/MagickCore/string_.h +++ b/MagickCore/string_.h @@ -59,7 +59,7 @@ extern MagickExport const char extern MagickExport double InterpretSiPrefixValue(const char *restrict,char **restrict), - *StringToArrayOfDoubles(const char *,ssize_t *, ExceptionInfo *); + *StringToArrayOfDoubles(const char *,ssize_t *); extern MagickExport int CompareStringInfo(const StringInfo *,const StringInfo *),