]> git.pld-linux.org Git - packages/crossmingw32-binutils.git/commitdiff
- obsolete, it seems that they applied it despite it was not fully complete
authorJakub Bogusz <qboosh@pld-linux.org>
Sat, 17 Apr 2004 19:04:20 +0000 (19:04 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    binutils-pe-types.patch -> 1.2

binutils-pe-types.patch [deleted file]

diff --git a/binutils-pe-types.patch b/binutils-pe-types.patch
deleted file mode 100644 (file)
index 706924e..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
---- binutils-2.14.90.0.8/ld/pe-dll.c.orig      2004-01-14 21:07:52.000000000 +0000
-+++ binutils-2.14.90.0.8/ld/pe-dll.c   2004-02-18 21:56:38.000000000 +0000
-@@ -25,6 +25,7 @@
- #include "libiberty.h"
- #include "safe-ctype.h"
-+#include <stdint.h>
- #include <time.h>
- #include "ld.h"
-@@ -916,8 +917,8 @@
- {
-   int s, hint;
-   unsigned char *edirectory;
--  unsigned long *eaddresses;
--  unsigned long *enameptrs;
-+  uint32_t *eaddresses;
-+  uint32_t *enameptrs;
-   unsigned short *eordinals;
-   unsigned char *enamestr;
-   time_t now;
-@@ -928,7 +929,7 @@
-   /* Note use of array pointer math here.  */
-   edirectory = edata_d;
--  eaddresses = (unsigned long *) (edata_d + 40);
-+  eaddresses = (uint32_t *) (edata_d + 40);
-   enameptrs = eaddresses + export_table_size;
-   eordinals = (unsigned short *) (enameptrs + count_exported_byname);
-   enamestr = (char *) (eordinals + count_exported_byname);
This page took 0.05634 seconds and 4 git commands to generate.