From 2588ecc44bc3f9367fa55ffaa10dbbce150851ef Mon Sep 17 00:00:00 2001 From: Cristy Date: Wed, 14 Oct 2015 19:40:35 -0400 Subject: [PATCH] Recognize label:@- as stdin --- MagickCore/utility.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MagickCore/utility.c b/MagickCore/utility.c index ae4f11de9..da9130f8d 100644 --- a/MagickCore/utility.c +++ b/MagickCore/utility.c @@ -1458,6 +1458,8 @@ MagickExport MagickBooleanType IsPathAccessible(const char *path) if ((path == (const char *) NULL) || (*path == '\0')) return(MagickFalse); + if (strcmp(path,"-") == 0) + return(MagickTrue); status=GetPathAttributes(path,&attributes); if (status == MagickFalse) return(status); -- 2.50.0