slackware-current/source/l/LibRaw/9ab70f6dca19229cb5caad7cc31af4e7501bac93.patch

23 lines
810 B
Diff
Raw Normal View History

Sun Oct 22 19:30:42 UTC 2023 a/lvm2-2.03.22-x86_64-1.txz: Upgraded. kde/kstars-3.6.7-x86_64-1.txz: Upgraded. It's time for KStars in Slackware to be less of a toy and more of a useful tool. The required dependencies have been added for EKOS, the INDI client included in KStars, which will allow for computer control of astronomy devices. Additional deps and drivers may be required, but these are runtime dependencies. See (for example) gpsd, libdc1394, libftdi1, libindi-libraries, and libindi-drivers, all of which can be found on slackbuilds.org. Huge thanks to Edward W. Koenig for the detailed writeup - it was extremely helpful! :-) Here's a link to the article: https://www.linuxgalaxy.org/kingbeowulf/astronomy-device-control-in-slackware-15-and-current/ kde/libindi-2.0.4-x86_64-1.txz: Added. This is required by kstars-3.6.7. kde/libnova-0.15.0-x86_64-1.txz: Added. This is required by kstars-3.6.7. Thanks to Chris Abela, Ryan P.C. McQuen, and Philip Lacroix. kde/stellarsolver-2.5-x86_64-1.txz: Added. This is required by kstars-3.6.7. kde/wcslib-8.1-x86_64-1.txz: Added. This is required by kstars-3.6.7. l/LibRaw-0.21.1-x86_64-2.txz: Rebuilt. This update fixes a security issue: A heap-buffer-overflow was found in raw2image_ex(int), which may lead to application crash by maliciously crafted input file. For more information, see: https://www.cve.org/CVERecord?id=CVE-2023-1729 (* Security fix *) l/imagemagick-7.1.1_21-x86_64-1.txz: Upgraded. l/libev-4.33-x86_64-1.txz: Added. This is required by kstars-3.6.7. As this package may have more general usage than just kstars, we'll put it in the L series. Thanks to AA ime Ramov and Matteo Bernardini. l/vte-0.74.1-x86_64-1.txz: Upgraded.
2023-10-22 21:30:42 +02:00
From 9ab70f6dca19229cb5caad7cc31af4e7501bac93 Mon Sep 17 00:00:00 2001
From: Alex Tutubalin <lexa@lexa.ru>
Date: Sat, 14 Jan 2023 18:32:59 +0300
Subject: [PATCH] do not set shrink flag for 3/4 component images
---
src/preprocessing/raw2image.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/preprocessing/raw2image.cpp b/src/preprocessing/raw2image.cpp
index e65e2ad7..702cf290 100644
--- a/src/preprocessing/raw2image.cpp
+++ b/src/preprocessing/raw2image.cpp
@@ -43,6 +43,8 @@ void LibRaw::raw2image_start()
// adjust for half mode!
IO.shrink =
+ !imgdata.rawdata.color4_image && !imgdata.rawdata.color3_image &&
+ !imgdata.rawdata.float4_image && !imgdata.rawdata.float3_image &&
P1.filters &&
(O.half_size || ((O.threshold || O.aber[0] != 1 || O.aber[2] != 1)));