add check for NULL
This commit is contained in:
parent
fbfe4dae40
commit
e07d1b4137
|
@ -193,7 +193,7 @@ static void open_selection(VteTerminal *vte) {
|
||||||
if (browser_cmd[0]) {
|
if (browser_cmd[0]) {
|
||||||
AtkText *text = ATK_TEXT(vte_terminal_accessible_new(vte));
|
AtkText *text = ATK_TEXT(vte_terminal_accessible_new(vte));
|
||||||
char *selection = atk_text_get_selection(text, 0, NULL, NULL);
|
char *selection = atk_text_get_selection(text, 0, NULL, NULL);
|
||||||
if (selection[0]) {
|
if (selection && selection[0]) {
|
||||||
launch_browser(selection);
|
launch_browser(selection);
|
||||||
}
|
}
|
||||||
g_free(selection);
|
g_free(selection);
|
||||||
|
|
Loading…
Reference in New Issue