summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-11-18 08:20:09 +0000
committerRoger Dingledine <arma@torproject.org>2003-11-18 08:20:09 +0000
commitec02f83f9411f5737f1e77443d282c7e3feda0e4 (patch)
treefcc7df30fdef21094242679e434ffb49b08f7605
parenta3e39b0ceb4478339f9903ab6e01a3984e208d42 (diff)
downloadtor-ec02f83f9411f5737f1e77443d282c7e3feda0e4.tar.gz
tor-ec02f83f9411f5737f1e77443d282c7e3feda0e4.zip
add a tor_malloc_zero wrapper: tor_malloc and memset 0
svn:r836
-rw-r--r--src/common/util.c6
-rw-r--r--src/common/util.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/common/util.c b/src/common/util.c
index d8adc05f3d..24c9902034 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -25,6 +25,12 @@ void *tor_malloc(size_t size) {
return result;
}
+void *tor_malloc_zero(size_t size) {
+ void *result = tor_malloc(size);
+ memset(result, 0, size);
+ return result;
+}
+
void *tor_realloc(void *ptr, size_t size) {
void *result;
diff --git a/src/common/util.h b/src/common/util.h
index f1c744b01b..8e91532ba0 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -33,6 +33,7 @@
#endif
void *tor_malloc(size_t size);
+void *tor_malloc_zero(size_t size);
void *tor_realloc(void *ptr, size_t size);
char *tor_strdup(const char *s);
#define tor_free(p) do {if(p) {free(p); (p)=NULL;}} while(0)