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 46fc2cd commit 19c4e92Copy full SHA for 19c4e92
src/tools/fuzzing/fuzzing.cpp
@@ -259,7 +259,8 @@ void TranslateToFuzzReader::setupMemory() {
259
builder.makeExport(hasher->name, hasher->name, ExternalKind::Function));
260
// Export memory so JS fuzzing can use it
261
if (!wasm.getExportOrNull("memory")) {
262
- wasm.addExport(builder.makeExport("memory", wasm.memories[0]->name, ExternalKind::Memory));
+ wasm.addExport(builder.makeExport(
263
+ "memory", wasm.memories[0]->name, ExternalKind::Memory));
264
}
265
266
0 commit comments