View | Details | Raw Unified | Return to bug 272311 | Differences between
and this patch

Collapse All | Expand All

(-)b/graphics/qgis-ltr/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	qgis
1
PORTNAME=	qgis
2
DISTVERSION=	3.28.7
2
DISTVERSION=	3.28.7
3
PORTREVISION=	1
3
PORTREVISION=	2
4
CATEGORIES=	graphics geography
4
CATEGORIES=	graphics geography
5
MASTER_SITES=	https://qgis.org/downloads/
5
MASTER_SITES=	https://qgis.org/downloads/
6
PKGNAMESUFFIX=	-ltr
6
PKGNAMESUFFIX=	-ltr
(-)b/graphics/qgis-ltr/files/patch-src_core_raster_qgsexiftools.cpp (-1 / +20 lines)
Added Link Here
0
- 
1
--- src/core/raster/qgsexiftools.cpp.orig	2023-05-26 12:01:31 UTC
2
+++ src/core/raster/qgsexiftools.cpp
3
@@ -94,7 +94,7 @@ QVariant decodeExifData( const QString &key, Exiv2::Ex
4
       case Exiv2::signedLong:
5
       case Exiv2::unsignedLongLong:
6
       case Exiv2::signedLongLong:
7
-        val = QVariant::fromValue( it->toLong() );
8
+        val = QVariant::fromValue( it->toInt64() );
9
         break;
10
 
11
       case Exiv2::tiffDouble:
12
@@ -108,7 +108,7 @@ QVariant decodeExifData( const QString &key, Exiv2::Ex
13
       case Exiv2::signedByte:
14
       case Exiv2::tiffIfd:
15
       case Exiv2::tiffIfd8:
16
-        val = QVariant::fromValue( static_cast< int >( it->toLong() ) );
17
+        val = QVariant::fromValue( static_cast< int >( it->toInt64() ) );
18
         break;
19
 
20
       case Exiv2::date:

Return to bug 272311