blob: 40d646c7dfe143577f088df4f603ac88e7fffc75 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From f36c9476d2816e0d3e61c9e13c22ed73883cb54a Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 24 Apr 2017 12:13:43 -0700
4Subject: [PATCH] compare the first character of string to be null or not
5
6Fixes
7
8error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
9| if (value[0] == '\0')
10| ^~~~
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 js/src/shell/jsoptparse.cpp | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/js/src/shell/jsoptparse.cpp b/js/src/shell/jsoptparse.cpp
18index b49d0a5..612aa00 100644
19--- a/js/src/shell/jsoptparse.cpp
20+++ b/js/src/shell/jsoptparse.cpp
21@@ -243,7 +243,7 @@ OptionParser::extractValue(size_t argc, char **argv, size_t *i, char **value)
22 char *eq = strchr(argv[*i], '=');
23 if (eq) {
24 *value = eq + 1;
25- if (value[0] == '\0')
26+ if (value[0][0] == '\0')
27 return error("A value is required for option %.*s", eq - argv[*i], argv[*i]);
28 return Okay;
29 }
30--
312.12.2
32