From 044ad2e2e7a74049ed5c2215d00624be9f045e60 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 14 Jul 2004 13:57:15 +0000 Subject: Merge remaining audit patch (save dlfcn.c) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3436 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- db1-ast/hash/ndbm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'db1-ast') diff --git a/db1-ast/hash/ndbm.c b/db1-ast/hash/ndbm.c index 83aa766c3..20840e976 100755 --- a/db1-ast/hash/ndbm.c +++ b/db1-ast/hash/ndbm.c @@ -79,8 +79,8 @@ dbm_open(file, flags, mode) info.cachesize = 0; info.hash = NULL; info.lorder = 0; - (void)strcpy(path, file); - (void)strcat(path, DBM_SUFFIX); + (void)strncpy(path, file, len - 1); + (void)strncat(path, DBM_SUFFIX, len - strlen(path) - 1); db = (DBM *)__hash_open(path, flags, mode, &info, 0); #ifndef __GNUC__ free(path); -- cgit v1.2.3