Package: toppler
Version: 1.1.4-1
Severity: serious

Hello,

toppler crashes when selecting the first (default) mission.  This is due to an
uninitialized variable and is dependent on the memory layout.  This did not 
occur
on my test system a the time I had uploaded the package. This does not occurs
under valgrind (though valgridn will output warnings).

The attached one-line patch fix that.

Cheers,
-- 
Bill. <ballo...@debian.org>

Imagine a large red swirl here. 
diff -ru toppler-1.1.4/level.cc toppler-1.1.4.n1/level.cc
--- toppler-1.1.4/level.cc      2009-10-11 01:46:06.000000000 +0200
+++ toppler-1.1.4.n1/level.cc   2011-01-16 17:50:52.000000000 +0100
@@ -214,6 +214,7 @@
       strcpy(n->fname, fname);
       n->prio = prio;
       n->next = m;
+      n->archive = archive;
 
       if (l)
         l->next = n;

Reply via email to