Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Fix format string error
· 4bb80d6c
Andreas Tille
authored
Apr 25, 2018
4bb80d6c
Standards-Version: 4.1.4
· 2e5f12e8
Andreas Tille
authored
Apr 25, 2018
2e5f12e8
Point Vcs-fields to Salsa
· 20eae595
Andreas Tille
authored
Apr 25, 2018
20eae595
Upload to unstable
· af3fca3b
Andreas Tille
authored
Apr 25, 2018
af3fca3b
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
af3fca3b
mrs (6.0.5+dfsg-5) unstable; urgency=medium
* Fix format string error
Closes: #893526
* Standards-Version: 4.1.4
* Point Vcs-fields to Salsa
-- Andreas Tille <tille@debian.org> Wed, 25 Apr 2018 21:42:38 +0200
mrs (6.0.5+dfsg-4) unstable; urgency=medium
[ Steve Langasek ]
...
...
debian/control
View file @
af3fca3b
...
...
@@ -23,9 +23,9 @@ Build-Depends: debhelper (>= 11~),
libbz2-dev,
libjs-jquery,
libjs-jquery-ui
Standards-Version: 4.1.
3
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med/mrs.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/mrs.git
Standards-Version: 4.1.
4
Vcs-Browser: https://
salsa
.debian.org/
med-team/mrs
Vcs-Git: https://
salsa
.debian.org/
med-team
/mrs.git
Homepage: http://mrs.cmbi.ru.nl/
Package: mrs
...
...
debian/patches/fix_format_string.patch
0 → 100644
View file @
af3fca3b
Description: Fix format string error
Bug-Debian: https://bugs.debian.org/893526
Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 25 Apr 2018 21:31:46 +0200
--- a/src/M6Parser.cpp
+++ b/src/M6Parser.cpp
@@ -691,7 +691,7 @@
XS(_M6_Script_set_attribute)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
XSRETURN(0);
@@ -721,7 +721,7 @@
XS(_M6_Script_set_document)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
XSRETURN(0);
@@ -759,7 +759,7 @@
XS(_M6_Script_index_text)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
}
// else if (VERBOSE)
@@ -799,7 +799,7 @@
XS(_M6_Script_index_string)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
}
@@ -837,7 +837,7 @@
XS(_M6_Script_index_unique_string)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
}
@@ -877,7 +877,7 @@
XS(_M6_Script_index_number)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
XSRETURN(0);
@@ -915,7 +915,7 @@
XS(_M6_Script_index_date)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
XSRETURN(0);
@@ -955,7 +955,7 @@
XS(_M6_Script_add_link)
}
catch (exception& e)
{
- croak(e.what());
+ croak("%s", e.what());
}
XSRETURN(0);
debian/patches/series
View file @
af3fca3b
...
...
@@ -2,3 +2,4 @@ makefile.diff
init_d.diff
gcc-6.patch
boost-1.65-compat.patch
fix_format_string.patch