]> git.siccegge.de Git - frida/frida.git/commitdiff
Fix segfault when loading a sceme file
authorChristoph Egger <christoph@anonymous.siccegge.de>
Sun, 24 May 2015 12:26:09 +0000 (14:26 +0200)
committerChristoph Egger <christoph@anonymous.siccegge.de>
Sun, 24 May 2015 12:26:09 +0000 (14:26 +0200)
src/bindings/Guile.cxx

index 12fd32f35befb6ec9885631e32ce9e6979de9fcb..78ad3805044600813dfaa2a3974a7eb1e66a871c 100644 (file)
@@ -53,4 +53,5 @@ int GuileInterpreter::loadFile(const std::string& filename,
                                std::ostream& stderr,
                                std::string& result) {
        scm_c_primitive_load(filename.c_str());
+       return 0;
 }