Skip to content
Snippets Groups Projects
Commit a67de73e authored by David Kalnischkies's avatar David Kalnischkies
Browse files

merge with lp:apt/debian-sid

Remove a bug (= an evil amok running if) introduced by the merge in 1817
which cause a segfault in the destructor for the dynamic mmap.
parent 4b2de672
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,7 @@ DynamicMMap::~DynamicMMap()
if (Fd == 0)
{
#ifdef _POSIX_MAPPED_FILES
if(munmap(Base, WorkSpace) < 0)
munmap(Base, WorkSpace);
#else
delete [] (unsigned char *)Base;
#endif
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-21 18:36+0200\n"
"POT-Creation-Date: 2009-07-26 01:10+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment