From <a.stockmeier[AT]avm.de>: fix the file dialog box code to use

"g_strdup()", not "strdup()" to copy strings.

svn path=/trunk/; revision=4181
This commit is contained in:
Guy Harris 2001-11-09 00:08:30 +00:00
parent 0ec155cfaf
commit 10843c0ddc
2 changed files with 4 additions and 2 deletions

View File

@ -870,6 +870,8 @@ Tomas Kukosa <tomas.kukosa[AT]anfdata.cz> {
<a.stockmeier[AT]avm.de> {
IPCOMP transformation and ID_IPV4_ADDR_SUBNET for ISAKMP
Fix the file dialog box code to use "g_strdup()", not "strdup()"
to copy strings
}
Pekka Nikander <pekka.nikander[AT]nomadiclab.com> {

View File

@ -1,7 +1,7 @@
/* file_dlg.c
* Dialog boxes for handling files
*
* $Id: file_dlg.c,v 1.43 2001/10/24 07:18:39 guy Exp $
* $Id: file_dlg.c,v 1.44 2001/11/09 00:08:30 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -564,7 +564,7 @@ file_reload_cmd_cb(GtkWidget *w, gpointer data) {
Also, "close_cap_file()" will free "cfile.filename", so we must make
a copy of it first. */
filename = strdup(cfile.filename);
filename = g_strdup(cfile.filename);
is_tempfile = cfile.is_tempfile;
cfile.is_tempfile = FALSE;
if (open_cap_file(filename, is_tempfile, &cfile) == 0) {