rpms/audacious-plugins/F-12 audacious-plugins-2.1-neon-request.patch, NONE, 1.1 audacious-plugins.spec, 1.73, 1.74

Michael Schwendt mschwendt at fedoraproject.org
Thu Dec 17 22:13:47 UTC 2009


Author: mschwendt

Update of /cvs/pkgs/rpms/audacious-plugins/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv6413

Modified Files:
	audacious-plugins.spec 
Added Files:
	audacious-plugins-2.1-neon-request.patch 
Log Message:
* Thu Dec 17 2009 Michael Schwendt <mschwendt at fedoraproject.org> - 2.1-26
- Avoid that neon's ne_request_destroy() is called with a NULL ptr.


audacious-plugins-2.1-neon-request.patch:
 neon.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- NEW FILE audacious-plugins-2.1-neon-request.patch ---
diff -Nur audacious-plugins-fedora-2.1-prep/src/neon/neon.c audacious-plugins-fedora-2.1-neon/src/neon/neon.c
--- audacious-plugins-fedora-2.1-prep/src/neon/neon.c	2009-07-07 00:40:36.000000000 +0200
+++ audacious-plugins-fedora-2.1-neon/src/neon/neon.c	2009-12-17 23:06:01.000000000 +0100
@@ -1345,7 +1345,9 @@
         kill_reader(h);
     }
 
-    ne_request_destroy(h->request);
+    if (NULL != h->request) {
+        ne_request_destroy(h->request);
+    }
     ne_session_destroy(h->session);
     reset_rb(&h->rb);
 


Index: audacious-plugins.spec
===================================================================
RCS file: /cvs/pkgs/rpms/audacious-plugins/F-12/audacious-plugins.spec,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -p -r1.73 -r1.74
--- audacious-plugins.spec	17 Dec 2009 11:06:05 -0000	1.73
+++ audacious-plugins.spec	17 Dec 2009 22:13:47 -0000	1.74
@@ -5,7 +5,7 @@
 
 Name: audacious-plugins
 Version: 2.1
-Release: 25%{?dist}
+Release: 26%{?dist}
 Summary: Plugins for the Audacious media player
 Group: Applications/Multimedia
 URL: http://audacious-media-player.org/
@@ -45,6 +45,8 @@ Patch16: audacious-plugins-2.1-jack.patc
 Patch17: audacious-plugins-2.1-pulseaudio-no-drain.patch
 #
 Patch18: audacious-plugins-2.1-sid-playfix.patch
+#
+Patch19: audacious-plugins-2.1-neon-request.patch
 
 
 BuildRequires: audacious-devel >= %{aud_ver}
@@ -183,6 +185,7 @@ vortex compressed files.
 %patch16 -p1 -b .jack
 %patch17 -p1 -b .no-drain
 %patch18 -p1 -b .sid-playfix
+%patch19 -p1 -b .neon-request
 
 sed -i '\,^.SILENT:,d' buildsys.mk.in
 
@@ -266,6 +269,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Dec 17 2009 Michael Schwendt <mschwendt at fedoraproject.org> - 2.1-26
+- Avoid that neon's ne_request_destroy() is called with a NULL ptr.
+
 * Wed Dec 16 2009 Michael Schwendt <mschwendt at fedoraproject.org> - 2.1-25
 - Patch SID plugin to remove old cruft and fix playback.
 - Don't drain in pulse_audio output plugin (2.2 doesn't do this anymore




More information about the fedora-extras-commits mailing list