SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
17
x11/openbox/patches/patch-openbox_client_c
Normal file
17
x11/openbox/patches/patch-openbox_client_c
Normal file
|
@ -0,0 +1,17 @@
|
|||
Fix a NULL pointer dereference that was causing a crash when launching
|
||||
Java GUI applications.
|
||||
From https://bugzilla.icculus.org/show_bug.cgi?id=5277 via Arch
|
||||
Linux.
|
||||
|
||||
Index: openbox/client.c
|
||||
--- openbox/client.c.orig
|
||||
+++ openbox/client.c
|
||||
@@ -941,7 +941,7 @@ static ObAppSettings *client_get_settings_state(ObClie
|
||||
!g_pattern_match(app->role,
|
||||
strlen(self->role), self->role, NULL))
|
||||
match = FALSE;
|
||||
- else if (app->title &&
|
||||
+ else if (app->title && self->title &&
|
||||
!g_pattern_match(app->title,
|
||||
strlen(self->title), self->title, NULL))
|
||||
match = FALSE;
|
Loading…
Add table
Add a link
Reference in a new issue