blob: 90b9d38135664852f0b87b93737a9b5fe1aeadf0 [file] [log] [blame]
Damien Millerb7956912017-09-19 12:29:23 +10001/*
2 * Copyright (c) 2008, 2010, 2011, 2016 Otto Moerbeek <otto@drijf.net>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include "includes.h"
18
Darren Tuckerba460ac2017-11-24 16:24:31 +110019#include <string.h>
20
Damien Millerb7956912017-09-19 12:29:23 +100021#ifndef HAVE_FREEZERO
22
23void
24freezero(void *ptr, size_t sz)
25{
Darren Tuckerf6dc2ba2018-02-16 17:32:28 +110026 if (ptr == NULL)
27 return;
Damien Millerb7956912017-09-19 12:29:23 +100028 explicit_bzero(ptr, sz);
29 free(ptr);
30}
31
32#endif /* HAVE_FREEZERO */
33