Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-09-15 04:02:57 +0400
committerChristopher Faylor <me@cgf.cx>2005-09-15 04:02:57 +0400
commit59960f651d84055ca449f142e10097c273cb1a0c (patch)
tree4e1451bebe4483112aed321c4411838dde18822a /winsup/cygwin/hookapi.cc
parentae37cc121868a4554b5118c8ad45f5493333b39e (diff)
* hookapi.cc (hook_or_detect_cygwin): Simplify very slightly.
* spawn.cc (av::fixup): Guard against problems reading an executable which does not match Microsoft's documentation about PE format.
Diffstat (limited to 'winsup/cygwin/hookapi.cc')
-rw-r--r--winsup/cygwin/hookapi.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/hookapi.cc b/winsup/cygwin/hookapi.cc
index 08e257ba1..8539d2a7a 100644
--- a/winsup/cygwin/hookapi.cc
+++ b/winsup/cygwin/hookapi.cc
@@ -185,7 +185,7 @@ hook_or_detect_cygwin (const char *name, const void *fn)
function_hook fh;
fh.origfn = NULL;
fh.hookfn = fn;
- char *buf = fn ? NULL : (char *) alloca (strlen (name) + strlen ("64") + sizeof ("_"));
+ char *buf = fn ? NULL : (char *) alloca (strlen (name) + sizeof ("_64"));
int i;
// Iterate through each import descriptor, and redirect if appropriate
for (PIMAGE_IMPORT_DESCRIPTOR pd = pdfirst; pd->FirstThunk; pd++)