We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de004ab commit 42faa40Copy full SHA for 42faa40
scripts/fuzz_opt.py
@@ -1343,6 +1343,11 @@ def handle(self, wasm):
1343
if not ctors:
1344
return
1345
1346
+ # Fix escaping of the names, as we will be passing them as commandline
1347
+ # parameters below (e.g. we want --ctors=foo\28bar and not
1348
+ # --ctors=foo\\28bar; that extra escaping \ would cause an error).
1349
+ ctors = ctors.replace('\\\\', '\\')
1350
+
1351
# eval the wasm.
1352
# we can use --ignore-external-input because the fuzzer passes in 0 to
1353
# all params, which is the same as ctor-eval assumes in this mode.
0 commit comments