summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-10-11 03:10:52 +0000
committerRoger Dingledine <arma@torproject.org>2007-10-11 03:10:52 +0000
commitbab60e5ade38de854eed980d5c397d9cee051792 (patch)
tree5896d32d843ceec8ae17adc72945f6486536dad8
parent900ddcb8fdc46efb25764582fd8569b94b3cf20a (diff)
downloadtor-bab60e5ade38de854eed980d5c397d9cee051792.tar.gz
tor-bab60e5ade38de854eed980d5c397d9cee051792.zip
bugfix on r11301:
Fix a minor memory leak whenever we wrote out a file. Bugfix on 0.2.0.7-alpha. svn:r11863
-rw-r--r--ChangeLog2
-rw-r--r--src/common/util.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7c36d620f8..bbbb83235c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -93,6 +93,8 @@ Changes in version 0.2.0.8-alpha - 2007-10-12
Bugfix in 0.2.0.7-alpha.
- Fix a minor memory leak whenever we parse guards from our state
file. Bugfix on 0.2.0.7-alpha.
+ - Fix a minor memory leak whenever we wrote out a file. Bugfix on
+ 0.2.0.7-alpha.
o Code simplifications and refactoring:
- Make a bunch of functions static. Remove some dead code.
diff --git a/src/common/util.c b/src/common/util.c
index 6786fd749e..7a5740cc99 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -1657,8 +1657,6 @@ finish_writing_to_file_impl(open_file_t *file_data, int abort_write)
}
}
- memset(file_data, 0, sizeof(file_data));
- file_data->fd = -1;
tor_free(file_data->filename);
tor_free(file_data->tempname);
tor_free(file_data);