diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2008-02-03 15:38:20 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2008-02-03 15:38:20 +0000 |
commit | 47d744b59da83744623bea39c006eb7e2ec02de9 (patch) | |
tree | 17d9ec1526a37c793ee3d7cbd031091d1867dd7f /tap-camelcounter.c | |
parent | e59b5d6b8a963263b0c2dcf163e07b4318737d71 (diff) | |
download | wireshark-47d744b59da83744623bea39c006eb7e2ec02de9.tar.gz wireshark-47d744b59da83744623bea39c006eb7e2ec02de9.tar.bz2 wireshark-47d744b59da83744623bea39c006eb7e2ec02de9.zip |
More rewrite of prohibited APIs (sprintf, strcpy, strcat).
svn path=/trunk/; revision=24258
Diffstat (limited to 'tap-camelcounter.c')
-rw-r--r-- | tap-camelcounter.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tap-camelcounter.c b/tap-camelcounter.c index fa489c1ace..0368465bcd 100644 --- a/tap-camelcounter.c +++ b/tap-camelcounter.c @@ -104,8 +104,7 @@ static void camelcounter_init(const char *optarg, void* userdata _U_) p_camelcounter = g_malloc(sizeof(struct camelcounter_t)); if(filter){ - p_camelcounter->filter=g_malloc(strlen(filter)+1); - strcpy(p_camelcounter->filter,filter); + p_camelcounter->filter=g_strdup(filter); } else { p_camelcounter->filter=NULL; } |