Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dLeyna for openSUSE:Factory checked in at 2026-09-15 17:09:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dLeyna (Old) and /work/SRC/openSUSE:Factory/.dLeyna.new.383539 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dLeyna" Tue Sep 15 17:09:19 2026 rev:8 rq:1377785 version:0.8.5 Changes: -------- --- /work/SRC/openSUSE:Factory/dLeyna/dLeyna.changes 2026-08-22 21:35:24.527625713 +0200 +++ /work/SRC/openSUSE:Factory/.dLeyna.new.383539/dLeyna.changes 2026-09-15 17:09:52.474989867 +0200 @@ -1,0 +2,6 @@ +Fri Sep 11 10:51:01 UTC 2026 - Dominique Leuenberger <[email protected]> + +- Update to version 0.8.5: + + server: Fix double-free in action callback + +------------------------------------------------------------------- Old: ---- dLeyna-0.8.4.tar.xz New: ---- dLeyna-0.8.5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dLeyna.spec ++++++ --- /var/tmp/diff_new_pack.ibUBhM/_old 2026-09-15 17:09:54.079056999 +0200 +++ /var/tmp/diff_new_pack.ibUBhM/_new 2026-09-15 17:09:54.081057083 +0200 @@ -17,7 +17,7 @@ Name: dLeyna -Version: 0.8.4 +Version: 0.8.5 Release: 0 Summary: Services and D-Bus APIs to access UPnP and DLNA media devices in a network License: LGPL-2.1-or-later ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.ibUBhM/_old 2026-09-15 17:09:54.115058506 +0200 +++ /var/tmp/diff_new_pack.ibUBhM/_new 2026-09-15 17:09:54.118058632 +0200 @@ -1,6 +1,7 @@ -mtime: 1787225007 -commit: 49fd0708185b816ef171008c01f69367eebaf00df17f60eee0a9b053a3df77cf +mtime: 1789123892 +commit: 0faf068802006e7157263c30bb91df63f54907132c3df1537754b0845a81aa83 url: https://src.opensuse.org/GNOME/dLeyna -revision: 49fd0708185b816ef171008c01f69367eebaf00df17f60eee0a9b053a3df77cf +revision: 0faf068802006e7157263c30bb91df63f54907132c3df1537754b0845a81aa83 +trackingbranch: factory projectscmsync: https://src.opensuse.org/GNOME/_ObsPrj ++++++ _service ++++++ --- /var/tmp/diff_new_pack.ibUBhM/_old 2026-09-15 17:09:54.141059594 +0200 +++ /var/tmp/diff_new_pack.ibUBhM/_new 2026-09-15 17:09:54.146059804 +0200 @@ -2,7 +2,7 @@ <services> <service mode="manual" name="obs_scm"> <param name="url">https://gitlab.gnome.org/World/dLeyna.git</param> - <param name="revision">v0.8.4</param> + <param name="revision">v0.8.5</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="scm">git</param> ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-09-11 12:51:32.000000000 +0200 @@ -0,0 +1,5 @@ +*.obscpio +*.osc +_build.* +.pbuild +osc-collab.* ++++++ dLeyna-0.8.4.tar.xz -> dLeyna-0.8.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dLeyna-0.8.4/NEWS new/dLeyna-0.8.5/NEWS --- old/dLeyna-0.8.4/NEWS 2026-06-21 08:40:17.000000000 +0200 +++ new/dLeyna-0.8.5/NEWS 2026-09-08 19:30:38.000000000 +0200 @@ -1,3 +1,16 @@ +dLeyna 0.8.5 (stable) +===================== + +server: + - Fix double-free in action callback + +Merge requests included in this release: + - https://gitlab.gnome.org/World/dLeyna/merge_requests/11 + +All contributors to this release: + - Jens Georg <[email protected]> + - Martin Geier <[email protected]> + dLeyna 0.8.4 (stable) ===================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dLeyna-0.8.4/libdleyna/server/device.c new/dLeyna-0.8.5/libdleyna/server/device.c --- old/dLeyna-0.8.4/libdleyna/server/device.c 2026-06-21 08:40:17.000000000 +0200 +++ new/dLeyna-0.8.5/libdleyna/server/device.c 2026-09-08 19:30:38.000000000 +0200 @@ -1324,7 +1324,7 @@ g_autofree gchar *result = NULL; g_autoptr(GError) error = NULL; dleyna_gasync_task_t *task = user_data; - g_autoptr(GUPnPServiceProxyAction) action; + GUPnPServiceProxyAction *action = NULL; action = gupnp_service_proxy_call_action_finish( GUPNP_SERVICE_PROXY(source), res, &error); @@ -1425,7 +1425,7 @@ g_autofree gchar *result = NULL; g_autoptr(GError) error = NULL; dleyna_gasync_task_t *task = user_data; - g_autoptr(GUPnPServiceProxyAction) action; + GUPnPServiceProxyAction *action = NULL; action = gupnp_service_proxy_call_action_finish( GUPNP_SERVICE_PROXY(source), res, &error); @@ -1459,7 +1459,7 @@ static gboolean prv_get_sort_capabilities(dleyna_gasync_task_t *task, GObject *target) { - GUPnPServiceProxyAction *action = + g_autoptr(GUPnPServiceProxyAction) action = gupnp_service_proxy_action_new("GetSortCapabilities", NULL); gupnp_service_proxy_call_action_async( GUPNP_SERVICE_PROXY(target), action, @@ -1477,7 +1477,7 @@ g_autoptr(GError) error = NULL; dleyna_gasync_task_t *task = user_data; - g_autoptr(GUPnPServiceProxyAction) action = + GUPnPServiceProxyAction *action = gupnp_service_proxy_call_action_finish( GUPNP_SERVICE_PROXY(source), res, &error); @@ -1517,7 +1517,7 @@ dleyna_gasync_task_t *task, GObject *target) { - GUPnPServiceProxyAction *action = + g_autoptr(GUPnPServiceProxyAction) action = gupnp_service_proxy_action_new("GetSearchCapabilities", NULL); gupnp_service_proxy_call_action_async( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dLeyna-0.8.4/meson.build new/dLeyna-0.8.5/meson.build --- old/dLeyna-0.8.4/meson.build 2026-06-21 08:40:17.000000000 +0200 +++ new/dLeyna-0.8.5/meson.build 2026-09-08 19:30:38.000000000 +0200 @@ -1,5 +1,5 @@ project('dleyna', 'c', - version: '0.8.4', + version: '0.8.5', license: 'LGPL-2.1-or-later', meson_version: '>=0.54.0' ) ++++++ dLeyna.obsinfo ++++++ --- /var/tmp/diff_new_pack.ibUBhM/_old 2026-09-15 17:09:54.435071899 +0200 +++ /var/tmp/diff_new_pack.ibUBhM/_new 2026-09-15 17:09:54.439072066 +0200 @@ -1,5 +1,5 @@ name: dLeyna -version: 0.8.4 -mtime: 1782024017 -commit: 00b603ca5ff21104dd677a7d65c80ff87068a8e4 +version: 0.8.5 +mtime: 1788888638 +commit: 5a4d47c214842108ddae3cfb09e9cf1dd0ea517e
