[med-svn] [Git][med-team/gatb-core][master] 4 commits: Use int as return of fgetc

Andreas Tille gitlab at salsa.debian.org
Wed Dec 2 16:50:49 GMT 2020



Andreas Tille pushed to branch master at Debian Med / gatb-core


Commits:
e310757e by Andreas Tille at 2020-12-02T14:45:28+01:00
Use int as return of fgetc

- - - - -
4ccfe66f by Andreas Tille at 2020-12-02T14:45:57+01:00
routine-update: Standards-Version: 4.5.1

- - - - -
91042e2f by Andreas Tille at 2020-12-02T17:08:29+01:00
Remove +dfsg from version in symbols

- - - - -
9b1528ce by Andreas Tille at 2020-12-02T17:30:39+01:00
Upload to unstable

- - - - -


5 changed files:

- debian/changelog
- debian/control
- debian/libgatbcore3.symbols.amd64
- debian/patches/series
- + debian/patches/use-int-as-return-of-fgetc.patch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+gatb-core (1.4.2+dfsg-6) unstable; urgency=medium
+
+  * Use int as return of fgetc
+    Closes: #954273
+  * Standards-Version: 4.5.1 (routine-update)
+
+ -- Andreas Tille <tille at debian.org>  Wed, 02 Dec 2020 17:09:31 +0100
+
 gatb-core (1.4.2+dfsg-5) unstable; urgency=medium
 
   * Fix installation of test data to really build on Architecture all


=====================================
debian/control
=====================================
@@ -13,7 +13,7 @@ Build-Depends: debhelper-compat (= 13),
                libjsoncpp-dev,
                doxygen,
                graphviz
-Standards-Version: 4.5.0
+Standards-Version: 4.5.1
 Vcs-Browser: https://salsa.debian.org/med-team/gatb-core
 Vcs-Git: https://salsa.debian.org/med-team/gatb-core.git
 Homepage: https://github.com/GATB/gatb-core


=====================================
debian/libgatbcore3.symbols.amd64
=====================================
The diff for this file was not included because it is too large.

=====================================
debian/patches/series
=====================================
@@ -7,3 +7,4 @@ dynamic_linking_of_tools.patch
 multiarch.patch
 spelling.patch
 avoid_-msse
+use-int-as-return-of-fgetc.patch


=====================================
debian/patches/use-int-as-return-of-fgetc.patch
=====================================
@@ -0,0 +1,18 @@
+Description: Use int as return of fgetc
+
+Author: Bernhard Übelacker <bernhardu at mailbox.org>
+Bug-Debian: https://bugs.debian.org/954273
+Forwarded: no
+Last-Update: 2020-11-03
+
+--- a/gatb-core/src/gatb/system/impl/FileSystemCommon.hpp
++++ b/gatb-core/src/gatb/system/impl/FileSystemCommon.hpp
+@@ -100,7 +100,7 @@ public:
+             result = strlen (tmp);
+ 
+             /** we skip all characters until we reach the next '\n'. */
+-            if (result > 0)  {  for (char c = tmp[result-1];  c !='\n' &&  c!=EOF;  c = fgetc (getHandle()))  {}  }
++            if (result > 0)  {  for (int c = tmp[result-1];  c !='\n' &&  c!=EOF;  c = fgetc (getHandle()))  {}  }
+         }
+ 
+         /** We return the result. */



View it on GitLab: https://salsa.debian.org/med-team/gatb-core/-/compare/0c4b3717a63333608cc8ace359dc1394033ea584...9b1528ce173480da870d1d639d6d947cb614984f

-- 
View it on GitLab: https://salsa.debian.org/med-team/gatb-core/-/compare/0c4b3717a63333608cc8ace359dc1394033ea584...9b1528ce173480da870d1d639d6d947cb614984f
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/debian-med-commit/attachments/20201202/cdc3d7b9/attachment-0001.html>


More information about the debian-med-commit mailing list