summaryrefslogtreecommitdiff
path: root/net/gtk+licq/files
diff options
context:
space:
mode:
authorPeter Pentchev <roam@FreeBSD.org>2001-05-22 17:03:11 +0000
committerPeter Pentchev <roam@FreeBSD.org>2001-05-22 17:03:11 +0000
commit181f39b885093d00a904fbb4c47625b1bbecf164 (patch)
tree09faf2f50647644edb10a462c5acd2c0c7a8486d /net/gtk+licq/files
parentRemove obsolete maintainer information. (diff)
Add a new patch (which seems to avoid a null pointer dereference).
Bump PORTREVISION accordingly. Change the port maintainer. PR: 27536 Submitted by: both former and new maintainers :)
Notes
Notes: svn path=/head/; revision=42922
Diffstat (limited to 'net/gtk+licq/files')
-rw-r--r--net/gtk+licq/files/patch-src::functions.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/net/gtk+licq/files/patch-src::functions.cpp b/net/gtk+licq/files/patch-src::functions.cpp
new file mode 100644
index 000000000000..c8ee50072d05
--- /dev/null
+++ b/net/gtk+licq/files/patch-src::functions.cpp
@@ -0,0 +1,15 @@
+--- src/functions.cpp 2001/04/23 21:07:27 1.97
++++ src/functions.cpp 2001/05/17 08:34:51 1.98
+@@ -989,7 +989,11 @@
+ {
+ unsigned long *uinptr;
+ GtkWidget *parent=NULL;
+-
++
++ if (widget == NULL) {
++ return(0);
++ }
++
+ for (;;)
+ {
+ if (GTK_IS_MENU (widget)) {