aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README3
-rw-r--r--uzbl.c27
2 files changed, 15 insertions, 15 deletions
diff --git a/README b/README
index 46f45d0..c15cc45 100644
--- a/README
+++ b/README
@@ -72,4 +72,5 @@ KNOWN BUGS
- Segfault occurs on shutdown, almost definitely FIFO related (I'm not seeing this bug now, but the warning was here when I forked the code and I haven't touched the FIFO bit)
- Segfaults when using zoom commands (happens when max zoom already reached?).
- Something in the FIFO code causes CPU usage to jump.
-- Segfaults when loading aliases from confgi file (currently aliases are defined in the code as a 'work-around').
+- Segfaults when loading aliases from config file (currently aliases are defined in the code as a 'work-around').
+- Segfaults when setting the xwin variable \ No newline at end of file
diff --git a/uzbl.c b/uzbl.c
index 806a0cd..4e0fae8 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -52,14 +52,13 @@ static gchar* home_page;
static gchar* uri = NULL;
static gchar* fifodir = NULL;
static char fifopath[64];
-static bool modevis = FALSE;
-static gboolean verbose = FALSE;
-static Window xwin = NULL;
+static bool modevis = false;
+//static Window xwin = 0;
static GOptionEntry entries[] =
{
- { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
- { "fifo-dir", 'd', 0, G_OPTION_ARG_STRING, &fifodir, "Directory to place FIFOs", NULL },
+ { "uri", 'u', 0, G_OPTION_ARG_STRING, &uri, "Uri to load", NULL },
+ { "fifo-dir", 'd', 0, G_OPTION_ARG_STRING, &fifodir, "Directory to place FIFOs", NULL },
{ NULL }
};
@@ -81,12 +80,12 @@ struct alias
static struct alias aliases[256];
static int numalias = 0;
-static void parse_command(char*);
+static void parse_command(const char*);
static bool parse_modeline (GtkWidget* mode, GdkEventKey* event)
{
if ((event->type==GDK_KEY_PRESS) && (event->keyval==GDK_Return))
- parse_command (gtk_entry_get_text (modeline));
+ parse_command (gtk_entry_get_text (GTK_ENTRY (modeline)));
return false;
}
@@ -119,7 +118,7 @@ static void toggle_command_mode ()
if (modevis)
{
gtk_widget_hide (modeline);
- gtk_widget_grab_focus (web_view);
+ gtk_widget_grab_focus (GTK_WIDGET (web_view));
}
else
{
@@ -159,6 +158,7 @@ static GtkWidget* create_window ()
GtkWidget* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_window_set_default_size (GTK_WINDOW (window), 800, 600);
gtk_widget_set_name (window, "Uzbl Browser");
+ /*xwin = GDK_WINDOW_XID (GTK_WIDGET (main_window)->window); This segfaults for some reason */
g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (gtk_main_quit), NULL);
g_signal_connect (G_OBJECT (window), "key-press-event", G_CALLBACK(key_press_cb), NULL);
@@ -173,13 +173,15 @@ static GtkWidget* create_modeline ()
return modeline;
}
-static void parse_command(char *command)
+static void parse_command(const char *command)
{
int i = 0;
bool done = false;
- char *cmdstr = command;
+ char *cmdstr;
void (*func)(WebKitWebView*);
+ strcpy(cmdstr, command);
+
printf("Checking aliases\n");
for (i = 0; i < numalias && ! done; i++)
{
@@ -212,7 +214,7 @@ static void parse_command(char *command)
if (!strncmp ("http://", command, 7))
{
printf ("Loading URI \"%s\"\n", command);
- uri = command;
+ strcpy(uri, command);
webkit_web_view_load_uri (web_view, uri);
}
}
@@ -388,9 +390,6 @@ int main (int argc, char* argv[])
if (!g_thread_supported ())
g_thread_init (NULL);
- xwin = GDK_WINDOW_XID (GTK_WIDGET (main_window)->window);
- printf("My X window id is %i\n",(int) xwin);
-
setup_settings ();
setup_gtk (argc, argv);
setup_commands ();