summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@canonical.com>2012-08-20 12:04:22 +0100
committerColin Watson <cjwatson@canonical.com>2012-08-20 12:04:22 +0100
commit2f9eb8dbb096730cf889f7fd0e0579aa9a5607b9 (patch)
tree05abccc1f69b19b8f1e668f4a2f2bf1961932d34
parent9c13e13e6e2066071aad61c6103b89cf22f02ca6 (diff)
* ftparchive/override.cc:
- Double maximum override line length to 1000 (LP: #1038961).
-rw-r--r--debian/changelog7
-rw-r--r--ftparchive/override.cc4
2 files changed, 9 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 2f6dbbd28..640647e8b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+apt (0.9.7.1ubuntu2) UNRELEASED; urgency=low
+
+ * ftparchive/override.cc:
+ - Double maximum override line length to 1000 (LP: #1038961).
+
+ -- Colin Watson <cjwatson@ubuntu.com> Mon, 20 Aug 2012 12:03:48 +0100
+
apt (0.9.7.1ubuntu1) quantal; urgency=low
* merged from the debian-sid branch
diff --git a/ftparchive/override.cc b/ftparchive/override.cc
index 760c20120..af8ec3a8f 100644
--- a/ftparchive/override.cc
+++ b/ftparchive/override.cc
@@ -34,7 +34,7 @@ bool Override::ReadOverride(string const &File,bool const &Source)
if (F == 0)
return _error->Errno("fopen",_("Unable to open %s"),File.c_str());
- char Line[500];
+ char Line[1000];
unsigned long long Counter = 0;
while (fgets(Line,sizeof(Line),F) != 0)
{
@@ -142,7 +142,7 @@ bool Override::ReadExtraOverride(string const &File,bool const &Source)
if (F == 0)
return _error->Errno("fopen",_("Unable to open %s"),File.c_str());
- char Line[500];
+ char Line[1000];
unsigned long long Counter = 0;
while (fgets(Line,sizeof(Line),F) != 0)
{