summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-01-11 11:37:21 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-01-11 11:37:21 (GMT)
commitec5e2f38d3eb0132822396f9b105d4cc5c78e86b (patch)
tree68dc8a4d9a6b01fe2552e0189e05f9455cdf9887 /generic
parent5947e3261525f012e16d814aca14fa42a498a5ce (diff)
parent2a52c1f6b17be29292bd301a7ee90157e856e6f7 (diff)
downloadtk-ec5e2f38d3eb0132822396f9b105d4cc5c78e86b.zip
tk-ec5e2f38d3eb0132822396f9b105d4cc5c78e86b.tar.gz
tk-ec5e2f38d3eb0132822396f9b105d4cc5c78e86b.tar.bz2
Fix [d4fb4e80d220e46e588f310291fd7a4205e8cd67|d4fb4e80d2]: Image photo commands read/write/put do not accept "-" as first letter in file names resp. image data
Diffstat (limited to 'generic')
-rw-r--r--generic/tkImgPhoto.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c
index 4ee9f69..1bd0142 100644
--- a/generic/tkImgPhoto.c
+++ b/generic/tkImgPhoto.c
@@ -1540,7 +1540,11 @@ ParseSubcommandOptions(
*/
if (!(allowedOptions & bit)) {
- goto unknownOrAmbiguousOption;
+ if (optPtr->name != NULL) {
+ goto unknownOrAmbiguousOption;
+ }
+ optPtr->name = objv[index];
+ continue;
}
/*