[neon/mobile/plasma-camera/Neon/stable] debian/patches: negate

Carlos De Maine null at kde.org
Tue Oct 21 00:03:03 BST 2025


Git commit 13d01b07ac33a6eb2692a4ca82c58a3c012c67d1 by Carlos De Maine.
Committed on 20/10/2025 at 23:02.
Pushed by carlosdem into branch 'Neon/stable'.

negate

M  +1    -1    debian/patches/exiv2.diff

https://invent.kde.org/neon/mobile/plasma-camera/-/commit/13d01b07ac33a6eb2692a4ca82c58a3c012c67d1

diff --git a/debian/patches/exiv2.diff b/debian/patches/exiv2.diff
index 5e854d2..22b27fc 100644
--- a/debian/patches/exiv2.diff
+++ b/debian/patches/exiv2.diff
@@ -9,6 +9,6 @@ index 29e651a..90fdf68 100644
 -        Exiv2::Image::UniquePtr image = Exiv2::ImageFactory::open(fileName.toStdString());
 -        if (!image) {
 +        Exiv2::Image::AutoPtr image = Exiv2::ImageFactory::open(fileName.toStdString());
-+        if (image.get() == nullptr) {
++        if (image.get() !== nullptr) {
              return;
          }


More information about the Neon-commits mailing list