This patch appears to fix it for my purposes. --- poppler-page.cc.orig 2006-12-22 14:00:04.000000000 -0600 +++ poppler-page.cc 2006-12-22 14:04:58.000000000 -0600 @@ -156,7 +156,9 @@ for (int i = 0; i < word_list->getLength(); i++) { TextWord *word = word_list->get(i); - QString string = QString::fromUtf8(word->getText()->getCString()); + GooString *word_str = word->getText(); + QString string = QString::fromUtf8(word_str->getCString()); + delete word_str; double xMin, yMin, xMax, yMax; word->getBBox(&xMin, &yMin, &xMax, &yMax);
Thanks for the patch, i fixed this leak some time ago in the qt4 frontend but forgot the qt3 one.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.