svn commit: r315159 - in head/net-im: libpurple/files pidgin

Joe Marcus Clarke marcus at FreeBSD.org
Sun Mar 24 20:39:22 UTC 2013


Author: marcus
Date: Sun Mar 24 20:39:21 2013
New Revision: 315159
URL: http://svnweb.freebsd.org/changeset/ports/315159

Log:
  Fix a crash with the cap plugin.
  
  PR:             176851
  Submitted by:   Ivan Klymenko <fidaj at ukr.net>

Added:
  head/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c   (contents, props changed)
Modified:
  head/net-im/pidgin/Makefile

Added: head/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/libpurple/files/patch-pidgin_plugins_cap_cap.c	Sun Mar 24 20:39:21 2013	(r315159)
@@ -0,0 +1,11 @@
+--- pidgin/plugins/cap/cap.c.orig	2013-03-24 20:34:29.882262000 +0000
++++ pidgin/plugins/cap/cap.c	2013-03-24 20:34:39.576121000 +0000
+@@ -43,7 +43,7 @@ static double generate_prediction_for(Pu
+ 	int threshold = purple_prefs_get_int("/plugins/gtk/cap/threshold");
+ 	int min_minute = (current_minute - threshold) % 1440;
+ 	int max_minute = (current_minute + threshold) % 1440;
+-	char *sql, sta_id = NULL;
++	char *sql, *sta_id = NULL;
+ 	sqlite3_stmt *stmt = NULL;
+ 	const char *tail = NULL;
+ 	int rc;

Modified: head/net-im/pidgin/Makefile
==============================================================================
--- head/net-im/pidgin/Makefile	Sun Mar 24 20:26:48 2013	(r315158)
+++ head/net-im/pidgin/Makefile	Sun Mar 24 20:39:21 2013	(r315159)
@@ -7,7 +7,7 @@
 #
 
 PORTNAME=	pidgin
-PORTREVISION=	0
+PORTREVISION=	1
 
 MAINTAINER=	marcus at FreeBSD.org
 COMMENT=	Pidgin multi-protocol messaging client (GTK+ UI)


More information about the svn-ports-head mailing list