changeset in /hg/pulseaudio: 2008-09-10 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Wed Sep 10 07:29:09 PDT 2008


changeset 83ebae76a9a9 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=83ebae76a9a9
description:
	2008-09-10 Omair Majid <omajid at redhat.com>

	    * src/native/org_classpath_icedtea_pulseaudio_EventLoop.c
	    (Java_org_classpath_icedtea_pulseaudio_EventLoop_native_1shutdown): Unref
	    the context when we are done with it. Works with PulseAudio 0.9.12.
	    * src/native/org_classpath_icedtea_pulseaudio_Stream.c
	    (Java_org_classpath_icedtea_pulseaudio_Stream_native_1pa_1stream_1disconnect):
	    Unref the stream when we are done with it. Works with PusleAudio 0.9.12.

diffstat:

2 files changed, 5 insertions(+), 2 deletions(-)
src/native/org_classpath_icedtea_pulseaudio_EventLoop.c |    3 ++-
src/native/org_classpath_icedtea_pulseaudio_Stream.c    |    4 +++-

diffs (27 lines):

diff -r 95fa206a3e1d -r 83ebae76a9a9 src/native/org_classpath_icedtea_pulseaudio_EventLoop.c
--- a/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c	Tue Sep 09 11:06:05 2008 -0400
+++ b/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c	Wed Sep 10 10:28:43 2008 -0400
@@ -281,7 +281,8 @@ JNIEXPORT void JNICALL Java_org_classpat
 	} else {
 		pa_operation_unref(o);
 	}
-
+	
+	pa_context_unref(context);
 	(*env)->DeleteGlobalRef(env, java_context->obj);
 
 	free(java_context);
diff -r 95fa206a3e1d -r 83ebae76a9a9 src/native/org_classpath_icedtea_pulseaudio_Stream.c
--- a/src/native/org_classpath_icedtea_pulseaudio_Stream.c	Tue Sep 09 11:06:05 2008 -0400
+++ b/src/native/org_classpath_icedtea_pulseaudio_Stream.c	Wed Sep 10 10:28:43 2008 -0400
@@ -478,7 +478,9 @@ JNIEXPORT jint JNICALL Java_org_classpat
 (JNIEnv* env, jobject obj) {
 	pa_stream* stream = (pa_stream*) getJavaPointer(env, obj, "streamPointer");
 	assert(stream);
-	return pa_stream_disconnect(stream);
+	int return_value = pa_stream_disconnect(stream);
+	pa_stream_unref(stream);
+	return return_value;
 }
 
 /*



More information about the distro-pkg-dev mailing list