From: Christoph Egger Date: Sun, 24 May 2015 12:26:09 +0000 (+0200) Subject: Fix segfault when loading a sceme file X-Git-Tag: v0.2~23 X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=commitdiff_plain;h=c81c0d3dba088b302187d7862a62ca88d2306e24 Fix segfault when loading a sceme file --- diff --git a/src/bindings/Guile.cxx b/src/bindings/Guile.cxx index 12fd32f..78ad380 100644 --- a/src/bindings/Guile.cxx +++ b/src/bindings/Guile.cxx @@ -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; }