diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-28 14:40:49 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:28 -0400 |
commit | 0c55a5ee1b5b35f399de7286cd8c6565a61e9634 (patch) | |
tree | 47c247481db46d478133eddade540f90c34402b3 /binary.cc | |
parent | 9db08c4c7de7b2058363bec4a3000f48fc78d580 (diff) | |
download | fork-ledger-0c55a5ee1b5b35f399de7286cd8c6565a61e9634.tar.gz fork-ledger-0c55a5ee1b5b35f399de7286cd8c6565a61e9634.tar.bz2 fork-ledger-0c55a5ee1b5b35f399de7286cd8c6565a61e9634.zip |
(read_binary_journal): Fixed a tiny memory leak when reading from a
binary cache.
Diffstat (limited to 'binary.cc')
-rw-r--r-- | binary.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,9 +12,9 @@ namespace ledger { static unsigned long binary_magic_number = 0xFFEED765; #ifdef DEBUG_ENABLED -static unsigned long format_version = 0x0002050b; +static unsigned long format_version = 0x00020601; #else -static unsigned long format_version = 0x0002050a; +static unsigned long format_version = 0x00020600; #endif static account_t ** accounts; |