changeset in /hg/icedtea6: 2008-11-10 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Mon Nov 10 07:15:20 PST 2008
changeset e7a4c496b2c0 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=e7a4c496b2c0
description:
2008-11-10 Omair Majid <omajid at redhat.com>
* pulseaudio/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c
(Java_org_classpath_icedtea_pulseaudio_EventLoop_native_1set_1sink_1volume):
Deallocate unused memory.
diffstat:
2 files changed, 8 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
pulseaudio/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c | 3 ++-
diffs (26 lines):
diff -r cfe2c755ee47 -r e7a4c496b2c0 ChangeLog
--- a/ChangeLog Mon Nov 10 12:43:00 2008 +0100
+++ b/ChangeLog Mon Nov 10 10:15:16 2008 -0500
@@ -1,3 +1,9 @@ 2008-11-10 Mark Wielaard <mark at klomp.o
+2008-11-10 Omair Majid <omajid at redhat.com>
+
+ * pulseaudio/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c
+ (Java_org_classpath_icedtea_pulseaudio_EventLoop_native_1set_1sink_1volume):
+ Deallocate unused memory.
+
2008-11-10 Mark Wielaard <mark at klomp.org>
* overlays/openjdk/jdk/src/share/classes/com/sun/media/sound/
diff -r cfe2c755ee47 -r e7a4c496b2c0 pulseaudio/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c
--- a/pulseaudio/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c Mon Nov 10 12:43:00 2008 +0100
+++ b/pulseaudio/src/native/org_classpath_icedtea_pulseaudio_EventLoop.c Mon Nov 10 10:15:16 2008 -0500
@@ -356,7 +356,8 @@ JNIEXPORT void JNICALL Java_org_classpat
*new_volume = volume;
int stream_id = pa_stream_get_index(stream);
- pa_context_get_sink_input_info(context, stream_id,sink_input_change_volume, new_volume);
+ pa_operation* o = pa_context_get_sink_input_info(context, stream_id,sink_input_change_volume, new_volume);
+ pa_operation_unref(o);
return;
}
More information about the distro-pkg-dev
mailing list