Mercurial > dropbear
view dbhelpers.c @ 1795:f0a524208d97
Update cli-main.c (#114)
Moved pid_t proxy_cmd_pid declaration at begin of block to allow build in c89 (gcc-2.95)
author | Guillaume Picquet <guillaume.picquet@gls-france.com> |
---|---|
date | Thu, 04 Mar 2021 13:46:46 +0100 |
parents | e75dab5bec71 |
children |
line wrap: on
line source
#include "dbhelpers.h" #include "includes.h" /* Erase data */ void m_burn(void *data, unsigned int len) { #if defined(HAVE_MEMSET_S) memset_s(data, len, 0x0, len); #elif defined(HAVE_EXPLICIT_BZERO) explicit_bzero(data, len); #else /* This must be volatile to avoid compiler optimisation */ volatile void *p = data; memset((void*)p, 0x0, len); #endif }