aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/iseries.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-01-24 19:30:43 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-01-24 19:30:43 +0000
commitd5d2e97b4746d7f512f84a9b4056fdb69fed3472 (patch)
treef549a60701243e3452d9d1ba778944bd1d122255 /wiretap/iseries.c
parent11a9f57c1a60168c6389b9d2cfc226694d9f715e (diff)
Fixed some more malloc -> g_malloc, free -> g_free, strdup -> g_strdup.
svn path=/trunk/; revision=24180
Diffstat (limited to 'wiretap/iseries.c')
-rw-r--r--wiretap/iseries.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/iseries.c b/wiretap/iseries.c
index 68c84046cd..10c0d39acf 100644
--- a/wiretap/iseries.c
+++ b/wiretap/iseries.c
@@ -774,9 +774,9 @@ iseries_parse_packet (wtap * wth, FILE_T fh,
/* free buffers allocs and return */
*err = 0;
- free (asciibuf);
- free (tcpdatabuf);
- free (workbuf);
+ g_free (asciibuf);
+ g_free (tcpdatabuf);
+ g_free (workbuf);
return wth->phdr.len;
}