aboutsummaryrefslogtreecommitdiff
path: root/compat/freezero.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-02-14 13:11:47 +0000
committerOmar Polo <op@omarpolo.com>2021-02-23 13:43:14 +0100
commit6b191ed52a6f3e10816f50d23ec3e52a7d8f2837 (patch)
tree0ace81a15340c43df48fa0310aa691d4b4b3fe3c /compat/freezero.c
parentd278a0c3c50146c703b675ca4dac1d58ef286585 (diff)
tests and compat for imsg
Diffstat (limited to 'compat/freezero.c')
-rw-r--r--compat/freezero.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/compat/freezero.c b/compat/freezero.c
new file mode 100644
index 0000000..8a945bd
--- /dev/null
+++ b/compat/freezero.c
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "../config.h"
+
+#include <stdlib.h>
+#include <string.h>
+
+void
+freezero(void *ptr, size_t len)
+{
+ if (ptr == NULL)
+ return;
+
+ memset(ptr, 0, len);
+ free(ptr);
+}