Fix Compiler::compile() return code.  Fix some uninitialized variable.
diff --git a/lib/bcc/ScriptCompiled.h b/lib/bcc/ScriptCompiled.h
index f676b3c..4d332b1 100644
--- a/lib/bcc/ScriptCompiled.h
+++ b/lib/bcc/ScriptCompiled.h
@@ -59,7 +59,8 @@
     char *mContext; // Context of BCC script (code and data)
 
   public:
-    ScriptCompiled(Script *owner) : mpOwner(owner), mCompiler(this) {
+    ScriptCompiled(Script *owner)
+      : mpOwner(owner), mCompiler(this), mContext(NULL) {
     }
 
     ~ScriptCompiled();