Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Mar 2013 20:39:21 +0000 (UTC)
From:      Joe Marcus Clarke <marcus@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r315159 - in head/net-im: libpurple/files pidgin
Message-ID:  <201303242039.r2OKdMx0016108@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@FreeBSD.org
 COMMENT=	Pidgin multi-protocol messaging client (GTK+ UI)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303242039.r2OKdMx0016108>