diff options
author | Haru <haru@dotalux.com> | 2014-07-10 11:21:36 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-07-10 11:21:36 +0200 |
commit | 3c24fb656f3b3370b7152d6f1d2cc9dbc6fbae5d (patch) | |
tree | 025ea42b2bfa0204138427e5c69a074912fc435b /src/common/core.c | |
parent | 8e3b160fa7f62246fd19bb973f544b387d42eeb2 (diff) | |
download | hercules-3c24fb656f3b3370b7152d6f1d2cc9dbc6fbae5d.tar.gz hercules-3c24fb656f3b3370b7152d6f1d2cc9dbc6fbae5d.tar.bz2 hercules-3c24fb656f3b3370b7152d6f1d2cc9dbc6fbae5d.tar.xz hercules-3c24fb656f3b3370b7152d6f1d2cc9dbc6fbae5d.zip |
Re-added revision info to the memory leak log
- Information was missing because sysinfo->final() was freeing the data
before iMalloc->final() could log it.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/core.c')
-rw-r--r-- | src/common/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/core.c b/src/common/core.c index d74e5a451..28c84e2cf 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -267,7 +267,7 @@ int main (int argc, char **argv) { rathread_final(); ers_final(); #endif - sysinfo->final(); + //sysinfo->final(); Called by iMalloc->final() iMalloc->final(); |