[Git][debian-gis-team/libgeotiff-dfsg][upstream] New upstream version 1.4.3~rc2
Bas Couwenberg
gitlab at salsa.debian.org
Wed Dec 12 07:27:19 GMT 2018
Bas Couwenberg pushed to branch upstream at Debian GIS Project / libgeotiff-dfsg
Commits:
a2d20fee by Bas Couwenberg at 2018-12-12T07:17:55Z
New upstream version 1.4.3~rc2
- - - - -
2 changed files:
- ChangeLog
- geo_print.c
Changes:
=====================================
ChangeLog
=====================================
@@ -1,6 +1,12 @@
+2018-12-11 Even Rouault <even dot rouault at spatialys dot com>
+
+ * geo_print.c: fix wrong test in DefaultRead() that caused erroenous
+ error message to be emitted.
+ * Prepare for 1.4.3RC2
+
2018-12-07 Even Rouault <even dot rouault at spatialys dot com>
- * Prepare for 1.4.3RC1
+ * Prepare for 1.4.3
2018-05-23 Even Rouault <even dot rouault at spatialys dot com>
=====================================
geo_print.c
=====================================
@@ -510,7 +510,7 @@ static int DefaultRead(char *string, void *aux)
int num_read;
/* 1023 comes from char message[1024]; in GTIFFImport */
num_read = fscanf((FILE *)aux, "%1023[^\n]\n", string);
- if (num_read != 0) {
+ if (num_read == 0) {
fprintf(stderr, "geo_print.c DefaultRead failed to read anything.\n");
}
return 1;
View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeotiff-dfsg/commit/a2d20feeb9878eaf7b8dc38f74095ccf18ba7aec
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeotiff-dfsg/commit/a2d20feeb9878eaf7b8dc38f74095ccf18ba7aec
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20181212/52ebf3f7/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list