Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2010-04-09 01:15:39 +0400
committerJohnLangford <jl@hunch.net>2010-04-19 23:28:19 +0400
commit144ab13c124f548e342ed3ffabeb7c27e71944a8 (patch)
tree9aa79866692256ffd5285fe777dee1f692f1ee83 /main.cc
parentea68c534f56ab6ba1abd51788be3ff102bf4cd94 (diff)
BF: free for malloc (delete should be for new)
Diffstat (limited to 'main.cc')
-rw-r--r--main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cc b/main.cc
index 9508127d..2e8e5788 100644
--- a/main.cc
+++ b/main.cc
@@ -29,7 +29,7 @@ int main(int argc, char *argv[]) {
cerr << endl;
}
- delete vars;
+ free(vars);
return 0;
}