aboutsummaryrefslogtreecommitdiffstats
path: root/tap-afpstat.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-03 15:38:20 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-02-03 15:38:20 +0000
commitfa849b3bb28985b022c11ff5b5a3c867563956e9 (patch)
tree17d9ec1526a37c793ee3d7cbd031091d1867dd7f /tap-afpstat.c
parentfe1751928ce228617657397d98eb1122ed01db6f (diff)
More rewrite of prohibited APIs (sprintf, strcpy, strcat).
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24258 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-afpstat.c')
-rw-r--r--tap-afpstat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tap-afpstat.c b/tap-afpstat.c
index 43bffbc5b9..16dff8118d 100644
--- a/tap-afpstat.c
+++ b/tap-afpstat.c
@@ -128,8 +128,7 @@ afpstat_init(const char *optarg, void* userdata _U_)
ss=g_malloc(sizeof(afpstat_t));
if(filter){
- ss->filter=g_malloc(strlen(filter)+1);
- strcpy(ss->filter, filter);
+ ss->filter=g_strdup(filter);
} else {
ss->filter=NULL;
}