diff options
| author | David Sommerseth <dazo@users.sourceforge.net> | 2009-09-26 12:56:35 +0200 |
|---|---|---|
| committer | David Sommerseth <dazo@users.sourceforge.net> | 2009-09-26 12:56:35 +0200 |
| commit | f90f8540d4fe98712a0b60ea4e304a69815d23c5 (patch) | |
| tree | c6c8bd4c9f962ac8a8281c45a83518be732a7fb3 | |
| parent | d0170fa670768d19a71b028c94a4cbd7398185b1 (diff) | |
| download | eurephia-f90f8540d4fe98712a0b60ea4e304a69815d23c5.tar.gz eurephia-f90f8540d4fe98712a0b60ea4e304a69815d23c5.tar.xz eurephia-f90f8540d4fe98712a0b60ea4e304a69815d23c5.zip | |
Moved from bzero() to memset()
| -rw-r--r-- | common/certinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/certinfo.c b/common/certinfo.c index 1a7d532..f63b783 100644 --- a/common/certinfo.c +++ b/common/certinfo.c @@ -61,7 +61,7 @@ certinfo *parse_tlsid(const char *input) { return NULL; ret = (certinfo *) malloc_nullsafe(NULL, sizeof(certinfo)+2); - bzero(&tmp, 130); + memset(&tmp, 0, 130); mainp = strdup(input); origptr = mainp; |
