Bug 13041 - poppler tries to parse directory entries as nameToUnicode files
Summary: poppler tries to parse directory entries as nameToUnicode files
Status: RESOLVED FIXED
Alias: None
Product: poppler
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
Hardware: x86 (IA32) Windows (All)
: medium normal
Assignee: poppler-bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-11-01 08:54 UTC by Jonathan Kew
Modified: 2007-11-01 13:53 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Jonathan Kew 2007-11-01 08:54:37 UTC
I'm cross-compiling poppler for Win32 using a mingw32 toolset (not using Cygwin), and have run into a minor issue with GlobalParams::scanEncodingDirs().

The problem is that the entries in the POPPLER_DATADIR/nameToUnicode directory are all passed to parseNameToUnicode(), and this includes the "." and ".." entries. Naturally, these cannot actually be read as nameToUnicode files, and so error messages are printed:

Z:\Volumes\Beta\xmingw32\poppler-0.6.1\build-mingw\utils>pdftotext.exe sample.pdf
Error: Couldn't open 'nameToUnicode' file 'Z:\usr\local\mingw\share\poppler\nameToUnicode'
Error: Couldn't open 'nameToUnicode' file 'Z:\usr\local\mingw\share\poppler'

The tool continues, and executes successfully, but these messages are disturbing.

I don't know if this would behave in the same way if built with other Windows tools and/or libraries, but I think a clean mingw32-based build would be desirable.

To solve this, I suggest passing gTrue to the GDir constructor, so that it stats the directory entries, and then skip the call to parseNameToUnicode if isDir() is true. Proposed patch follows (hoping the web form doesn't mangle it):

========================================
diff --git a/poppler/GlobalParams.cc b/poppler/GlobalParams.cc
index cf97e78..a6d49d2 100644
--- a/poppler/GlobalParams.cc
+++ b/poppler/GlobalParams.cc
@@ -655,9 +655,10 @@ void GlobalParams::scanEncodingDirs() {
   GDir *dir;
   GDirEntry *entry;
 
-  dir = new GDir(POPPLER_DATADIR "/nameToUnicode", gFalse);
+  dir = new GDir(POPPLER_DATADIR "/nameToUnicode", gTrue);
   while (entry = dir->getNextEntry(), entry != NULL) {
-    parseNameToUnicode(entry->getFullPath());
+    if (!entry->isDir())
+      parseNameToUnicode(entry->getFullPath());
     delete entry;
   }
   delete dir;
========================================
Comment 1 Albert Astals Cid 2007-11-01 13:53:49 UTC
Fixed, thanks.

http://cgit.freedesktop.org/poppler/poppler/commit/?h=poppler-0.6


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.