diff options
author | Guy Harris <guy@alum.mit.edu> | 2005-08-06 03:44:55 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2005-08-06 03:44:55 +0000 |
commit | 5fb6e97fb43b2b7929a7bb20b1d408b798d95551 (patch) | |
tree | 32b19974cee8f9cb038186254b92b64e98975504 /tap-sctpchunkstat.c | |
parent | b992c7339116ada28b7021349a6dbea9f023ded0 (diff) | |
download | wireshark-5fb6e97fb43b2b7929a7bb20b1d408b798d95551.tar.gz wireshark-5fb6e97fb43b2b7929a7bb20b1d408b798d95551.tar.bz2 wireshark-5fb6e97fb43b2b7929a7bb20b1d408b798d95551.zip |
Squelch more const warnings (and fix some memory leaks that found).
_U_-ify some unused arguments, rather than assigning them to themselves.
Un-constify one variable that gets assigned a mallocated pointer.
Clean up indentation.
svn path=/trunk/; revision=15236
Diffstat (limited to 'tap-sctpchunkstat.c')
-rw-r--r-- | tap-sctpchunkstat.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tap-sctpchunkstat.c b/tap-sctpchunkstat.c index 83b8985a14..5d60ccbab9 100644 --- a/tap-sctpchunkstat.c +++ b/tap-sctpchunkstat.c @@ -2,7 +2,7 @@ * SCTP chunk counter for ethereal * Copyright 2005 Oleg Terletsky <oleg.terletsky@comverse.com> * - * $Id:$ + * $Id$ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -219,17 +219,16 @@ sctpstat_draw(void *phs) static void -sctpstat_init(char *optarg) +sctpstat_init(const char *optarg) { sctpstat_t *hs; - char *filter=NULL; + const char *filter=NULL; GString *error_string; if(!strncmp(optarg,"sctp,stat,",11)){ filter=optarg+11; } else { - filter=g_malloc(1); - *filter='\0'; + filter=""; } hs = g_malloc(sizeof(sctpstat_t)); |