Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv8020
Modified Files:
browser.c
Log Message:
We don't need that quoted variable anymore.
Index: browser.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/browser.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- browser.c 23 Aug 2002 23:22:26 -0000 1.26
+++ browser.c 24 Aug 2002 01:10:43 -0000 1.27
@@ -584,7 +584,6 @@
if (pid == 0) {
char **args;
char command[1024];
- char *quoted = NULL;
if (web_browser == BROWSER_OPERA) {
args[0] = "opera";
@@ -619,8 +618,6 @@
}
execvp(args[0], args);
- if (quoted)
- g_free(quoted);
_exit(0);
}
}
|