~ubuntu-branches/debian/squeeze/mailman/squeeze

« back to all changes in this revision

Viewing changes to debian/patches/71_date_overflows.patch

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2009-03-14 14:18:16 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090314141816-pmzxmpke3c1irnst
Tags: 1:2.1.12-1
* New upstream release.
  + Minimum Python version is now 2.4.
  + Patches obsoleted (incorporated or not useful anymore):
    00_stolen_from_HEAD,
    11_handle_propfind.patch,
    32_MIME_fixup,
    62_new_list_bad_pending_requests,
    67_update_handle_old_versions,
    68_update_catalan,
    78_DeprecationWarning,
    80_fix_string_search.
    Refresh all others. Many thanks to Mark Sapiro and
    Paul Wise for the help in cleaning this up.
  + Fixes bounce handling NotAMemberError (closes: #517997).
* Various packaging cleanups, upgrade debhelper to level 7.
* Removes embedded copy of pythonlib/email module.
* Checked for policy 3.8.1, remove shipped var/{run,lock}
  dirs, they are already created correctly by the init script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Patch: 71_date_overflows.patch
2
2
Author: Lionel Elie Mamane <lionel@mamane.lu>
3
 
React sensibly on integer overflow in date handling
4
 
Index: mailman-2.1.10/Mailman/Handlers/Scrubber.py
 
3
React sensibly on integer overflow in date handling (Closes: #326024, CVE-2005-4153)
 
4
Index: mailman-2.1.12/Mailman/Handlers/Scrubber.py
5
5
===================================================================
6
 
--- mailman-2.1.10.orig/Mailman/Handlers/Scrubber.py    2008-06-15 18:49:54.000000000 +0200
7
 
+++ mailman-2.1.10/Mailman/Handlers/Scrubber.py 2008-06-15 18:49:54.000000000 +0200
 
6
--- mailman-2.1.12.orig/Mailman/Handlers/Scrubber.py    2009-03-02 20:50:19.000000000 +0100
 
7
+++ mailman-2.1.12/Mailman/Handlers/Scrubber.py 2009-03-02 20:50:20.000000000 +0100
8
8
@@ -143,7 +143,7 @@
9
9
                      }.get(parts[3], 0)
10
10
             day = int(parts[4])