]> code.delx.au - gnu-emacs/commitdiff
Avoid segfaults on MS-Windows when invoking subprocesses (Bug#20264)
authorKoichi Arakawa <arakawa@pp.iij4u.or.jp>
Mon, 6 Apr 2015 10:26:54 +0000 (13:26 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 6 Apr 2015 10:26:54 +0000 (13:26 +0300)
 src/w32proc.c (w32_executable_type): Look for the DLL name in the
 correct section.  This avoids segfaults with some executables.

src/ChangeLog
src/w32proc.c

index 1c3f933d7d86b7a702f6abc313fbf99378f6f143..33d0b9b9521c6c0f07c272b25582c440006d7402 100644 (file)
@@ -1,3 +1,9 @@
+2015-04-06  Koichi Arakawa  <arakawa@pp.iij4u.or.jp>  (tiny change)
+
+       * w32proc.c (w32_executable_type): Look for the DLL name in the
+       correct section.  This avoids segfaults with some executables.
+       (Bug#20264)
+
 2015-04-04  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xselect.c (x_reply_selection_request)
index 7d982f831e259a30c3d99408dafda882e2ced14b..9f699ccf65bbc51cd34d474fb300f3a9132d7571 100644 (file)
@@ -1613,24 +1613,25 @@ w32_executable_type (char * filename,
 #endif
           if (data_dir)
             {
-              /* Look for cygwin.dll in DLL import list. */
+              /* Look for Cygwin DLL in the DLL import list. */
               IMAGE_DATA_DIRECTORY import_dir =
                 data_dir[IMAGE_DIRECTORY_ENTRY_IMPORT];
-              IMAGE_IMPORT_DESCRIPTOR * imports;
-              IMAGE_SECTION_HEADER * section;
-
-              section = rva_to_section (import_dir.VirtualAddress, nt_header);
-              imports = RVA_TO_PTR (import_dir.VirtualAddress, section,
-                                    executable);
+              IMAGE_IMPORT_DESCRIPTOR * imports =
+               RVA_TO_PTR (import_dir.VirtualAddress,
+                           rva_to_section (import_dir.VirtualAddress,
+                                           nt_header),
+                           executable);
 
               for ( ; imports->Name; imports++)
                 {
+                 IMAGE_SECTION_HEADER * section =
+                   rva_to_section (imports->Name, nt_header);
                   char * dllname = RVA_TO_PTR (imports->Name, section,
                                                executable);
 
-                  /* The exact name of the cygwin dll has changed with
-                     various releases, but hopefully this will be reasonably
-                     future proof.  */
+                  /* The exact name of the Cygwin DLL has changed with
+                     various releases, but hopefully this will be
+                     reasonably future-proof.  */
                   if (strncmp (dllname, "cygwin", 6) == 0)
                     {
                       *is_cygnus_app = TRUE;