+2005-08-27 Frank Lichtenheld <djpig@debian.org>
+
+ * scripts/dpkg-gencontrol: Bail out with an error if parsedep
+ found an error while parsing a dependency field.
+
2005-08-17 Scott James Remnant <scott@netsplit.com>
* configure.ac: Bump version to 1.13.12~.
+dpkg (1.13.12~) unstable; urgency=low
+
+ [Frank Lichtenheld]
+ * Let dpkg-gencontrol bail out with an error if parsedep
+ found an error while parsing a dependency field. Closes: #228125
+
+ --
+
dpkg (1.13.11.1) unstable; urgency=low
* Change maintainers to new team.
} elsif (s/^C$myindex //) {
if (m/^(Package|Description|Essential|Optional)$/) {
} elsif (exists($pkg_dep_fields{$_})) {
- $f{$_}= showdep(parsedep(substvars($v)), 0);
+ my $dep = parsedep(substvars($v));
+ &error("error occoured while parsing $_") unless defined $dep;
+ $f{$_}= showdep($dep, 0);
} elsif (m/^Section$|^Priority$/) {
} elsif (m/^Architecture$/) {
} elsif (s/^X[CS]*B[CS]*-//i) {