mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
make valgrind less chatty about res_crypto (bug #2857)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4250 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -174,6 +174,7 @@ static struct ast_key *try_load_key (char *dir, char *fname, int ifd, int ofd, i
|
||||
while(!feof(f)) {
|
||||
/* Calculate a "whatever" quality md5sum of the key */
|
||||
char buf[256];
|
||||
memset(buf, 0, 256);
|
||||
fgets(buf, sizeof(buf), f);
|
||||
if (!feof(f)) {
|
||||
MD5Update(&md5, buf, strlen(buf));
|
||||
@@ -441,7 +442,7 @@ int ast_check_signature(struct ast_key *key, char *msg, char *sig)
|
||||
static void crypto_load(int ifd, int ofd)
|
||||
{
|
||||
struct ast_key *key, *nkey, *last;
|
||||
DIR *dir;
|
||||
DIR *dir = NULL;
|
||||
struct dirent *ent;
|
||||
int note = 0;
|
||||
/* Mark all keys for deletion */
|
||||
|
Reference in New Issue
Block a user