X-Git-Url: http://git.maemo.org/git/?p=browser-switch;a=blobdiff_plain;f=launcher.c;h=6f25a28c0a783716c82c819cab279cfcf1e49b68;hp=3ea9f80c6cde888918c07b47c54d5b8098e9fd54;hb=5a19c8657cd5a93c80f23d952e411e20517edd42;hpb=6a0bbbe4e737de30b850e617738cd4c8e363ba69 diff --git a/launcher.c b/launcher.c index 3ea9f80..6f25a28 100644 --- a/launcher.c +++ b/launcher.c @@ -84,6 +84,8 @@ void launch_microb(struct swb_context *ctx, char *uri) { if (!uri) uri = "new_window"; + printf("launch_microb with uri '%s'\n", uri); + /* Launch browserd if it's not running */ status = system("pidof /usr/sbin/browserd > /dev/null"); if (WIFEXITED(status) && WEXITSTATUS(status)) { @@ -135,8 +137,10 @@ static void launch_other_browser(struct swb_context *ctx, char *uri) { if (!uri || !strcmp(uri, "new_window")) uri = ""; - urilen = strlen(uri); - if (urilen > 0) { + + printf("launch_other_browser with uri '%s'\n", uri); + + if ((urilen = strlen(uri)) > 0) { /* Quote the URI to prevent the shell from interpreting it */ /* urilen+3 = length of URI + 2x \' + \0 */ if (!(quoted_uri = calloc(urilen+3, sizeof(char))))