]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sat, 9 Nov 2013 02:28:05 +0000 (02:28 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sat, 9 Nov 2013 02:28:05 +0000 (02:28 +0000)
MagickCore/string.c
MagickCore/string_.h

index 37a5996f51d08b75ed967c6adef33d830eabae13..d0d7bfe771fdd3aa8fa0fb447eda25c1648caf98 100644 (file)
@@ -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;
index d9fbf6414055600a8fc480237768e759e81e48a5..ed0e7a474e8a7ab8ebc5735da057e50021de0d26 100644 (file)
@@ -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 *),