From 978db30820226fe9362db91ad64f80aa7839339437ca60013dc7cf6b6e3c39f6 Mon Sep 17 00:00:00 2001 From: Stefan Dirsch Date: Thu, 3 Oct 2024 21:42:39 +0000 Subject: [PATCH] - Update to bugfix release 24.1.3 * dix: check for calloc() failure in Xi event conversion routines * dix: PolyText: fully initialize local_closure * dix: SetFontPath: don't set errorValue on Success * dix: enterleave.c: fix implicit fallthrough warnings * dix: CreateScratchGC: avoid dereference of pointer we just set to NULL * dix: InitPredictableAccelerationScheme: avoid memory leak on failure * dix: dixChangeWindowProperty: don't call memcpy if malloc failed * dix: ProcListProperties: skip unneeded work if numProps is 0 * dix: HashResourceID: use unsigned integers for bit shifting * dix: GetPairedDevice: check if GetMaster returned NULL * dix: FindBestPixel: fix implicit fallthrough warning * CI: clone libdecor from fd.o instead of gnome.org * CI: update libdecor from 0.1.0 to 0.1.1 * Don't crash if the client argv or argv[0] is NULL. * Return NULL in *cmdname if the client argv or argv[0] is NULL * xwayland: connect to the wl display before calling into EGL * xwayland: Report correct mode size when rootful * build: Move epoll dependency check * build: Add epoll to Xwayland for DragonFly and OpenBSD * build: Fix DRI3 on DragonFly and OpenBSD * os: Fix NULL pointer dereference * dix: don't push the XKB state to a non-existing master keyboard * Xi: when removing a master search for a disabled paired device OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xwayland?expand=0&rev=92 --- xwayland-24.1.2.tar.xz | 3 --- xwayland-24.1.2.tar.xz.sig | Bin 95 -> 0 bytes xwayland-24.1.3.tar.xz | 3 +++ xwayland-24.1.3.tar.xz.sig | Bin 0 -> 95 bytes xwayland.changes | 28 ++++++++++++++++++++++++++++ xwayland.spec | 2 +- 6 files changed, 32 insertions(+), 4 deletions(-) delete mode 100644 xwayland-24.1.2.tar.xz delete mode 100644 xwayland-24.1.2.tar.xz.sig create mode 100644 xwayland-24.1.3.tar.xz create mode 100644 xwayland-24.1.3.tar.xz.sig diff --git a/xwayland-24.1.2.tar.xz b/xwayland-24.1.2.tar.xz deleted file mode 100644 index 3b91855..0000000 --- a/xwayland-24.1.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:141eb76e7e422a3661c08782c70be40931084755042c04506e0d97dd463ef7d2 -size 1302068 diff --git a/xwayland-24.1.2.tar.xz.sig b/xwayland-24.1.2.tar.xz.sig deleted file mode 100644 index 47453ae0b4253c6c5b82c6c2dfc7321139bb7526898d48f012e3ee8df9829563..0000000000000000000000000000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 95 zcmeB(WnmCxVvrS6WJ$l%_9@B!=wI)xO0gmZx%=e2T^(4N(l)2;W8mTxfQeK%Fw76u vIq5L}5AQO~zc+V%_1f~n@8Gl}409!~TgUII6S@|q-nAybR(V@Z!v`k-X&)x8 diff --git a/xwayland-24.1.3.tar.xz b/xwayland-24.1.3.tar.xz new file mode 100644 index 0000000..9d34443 --- /dev/null +++ b/xwayland-24.1.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcdb57a66cc9b124c8f936760592628ac4e744a7d7b3179aa86189ad7ea4cb10 +size 1302164 diff --git a/xwayland-24.1.3.tar.xz.sig b/xwayland-24.1.3.tar.xz.sig new file mode 100644 index 0000000000000000000000000000000000000000000000000000000000000000..f8868b98addf5057b06a37e14747a29819f9e7898eda969353fb3e0971c08947 GIT binary patch literal 95 zcmeB(WnmCxVvrS6WJ$l%_9@B!=wI)xO0gmZx%=e2T^(4N(*E)vVc_BvfQg()XP7Hm v@~`%Jc1j2Hh72i|o{Hf3V?37_=4q^4Ju7zU!&@7Qa~uzT<-W#{Sr!QZKcOW( literal 0 HcmV?d00001 diff --git a/xwayland.changes b/xwayland.changes index ad66c75..4f71dc0 100644 --- a/xwayland.changes +++ b/xwayland.changes @@ -1,3 +1,31 @@ +------------------------------------------------------------------- +Thu Oct 3 21:35:10 UTC 2024 - Stefan Dirsch + +- Update to bugfix release 24.1.3 + * dix: check for calloc() failure in Xi event conversion routines + * dix: PolyText: fully initialize local_closure + * dix: SetFontPath: don't set errorValue on Success + * dix: enterleave.c: fix implicit fallthrough warnings + * dix: CreateScratchGC: avoid dereference of pointer we just set to NULL + * dix: InitPredictableAccelerationScheme: avoid memory leak on failure + * dix: dixChangeWindowProperty: don't call memcpy if malloc failed + * dix: ProcListProperties: skip unneeded work if numProps is 0 + * dix: HashResourceID: use unsigned integers for bit shifting + * dix: GetPairedDevice: check if GetMaster returned NULL + * dix: FindBestPixel: fix implicit fallthrough warning + * CI: clone libdecor from fd.o instead of gnome.org + * CI: update libdecor from 0.1.0 to 0.1.1 + * Don't crash if the client argv or argv[0] is NULL. + * Return NULL in *cmdname if the client argv or argv[0] is NULL + * xwayland: connect to the wl display before calling into EGL + * xwayland: Report correct mode size when rootful + * build: Move epoll dependency check + * build: Add epoll to Xwayland for DragonFly and OpenBSD + * build: Fix DRI3 on DragonFly and OpenBSD + * os: Fix NULL pointer dereference + * dix: don't push the XKB state to a non-existing master keyboard + * Xi: when removing a master search for a disabled paired device + ------------------------------------------------------------------- Tue Sep 24 11:24:48 UTC 2024 - Stefan Dirsch diff --git a/xwayland.spec b/xwayland.spec index d940310..95294ae 100644 --- a/xwayland.spec +++ b/xwayland.spec @@ -22,7 +22,7 @@ %endif Name: xwayland -Version: 24.1.2 +Version: 24.1.3 Release: 0 URL: http://xorg.freedesktop.org Summary: Xwayland Xserver