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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-06-07 20:54:33 +0400
committerRussell Belfer <rb@github.com>2013-06-07 20:54:33 +0400
commit3e9e6cdaff8acb11399736abbf793bf2d000d037 (patch)
tree4e1f3ed201309ae8a3668091e7952c26b6e7a836 /src/util.c
parent1a42dd17eb2c35fa572418f5958595cbe297d229 (diff)
Add safe memset and use it
This adds a `git__memset` routine that will not be optimized away and updates the places where I memset() right before a free() call to use it.
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c
index da15a039d..248cf4c42 100644
--- a/src/util.c
+++ b/src/util.c
@@ -722,3 +722,13 @@ void git__insertsort_r(
if (freeswap)
git__free(swapel);
}
+
+void git__memset(void *data, int c, size_t size)
+{
+ volatile uint8_t *scan = data;
+ uint8_t *end = scan + size;
+ uint8_t val = (uint8_t)c;
+
+ while (scan < end)
+ *scan++ = val;
+}