]> git.eshelyaron.com Git - emacs.git/commitdiff
doc string file descriptor exhaustion fix
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Mar 2016 00:29:55 +0000 (16:29 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 5 Mar 2016 00:30:43 +0000 (16:30 -0800)
* src/doc.c (get_doc_string): Move newly-added check to a better
location (Bug#22814).

src/doc.c

index 6e7906578a4b931d243474a5542f81b62615b534..a20ecbdb753f05bd054576160af0f06025943f46 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -126,9 +126,6 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition)
   fd = emacs_open (name, O_RDONLY, 0);
   if (fd < 0)
     {
-      if ((errno == EMFILE) || (errno == ENFILE))
-       report_file_error ("Read error on documentation file", file);
-
 #ifndef CANNOT_DUMP
       if (!NILP (Vpurify_flag))
        {
@@ -141,6 +138,9 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition)
 #endif
       if (fd < 0)
        {
+         if (errno == EMFILE || errno == ENFILE)
+           report_file_error ("Read error on documentation file", file);
+
          SAFE_FREE ();
          AUTO_STRING (cannot_open, "Cannot open doc string file \"");
          AUTO_STRING (quote_nl, "\"\n");