| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| Sender: | cygwin-owner AT sourceware DOT cygnus DOT com |
| Delivered-To: | mailing list cygwin AT sourceware DOT cygnus DOT com |
| Message-Id: | <3.0.5.32.19990227183336.00812600@pop.ne.mediaone.net> |
| X-Sender: | phumblet AT pop DOT ne DOT mediaone DOT net |
| X-Mailer: | QUALCOMM Windows Eudora Pro Version 3.0.5 (32) |
| Date: | Sat, 27 Feb 1999 18:33:36 -0500 |
| To: | bug-gnu-utils AT gnu DOT org |
| From: | "Pierre A. Humblet" <Pierre DOT Humblet AT eurecom DOT fr> |
| Subject: | bug in strip 2.9.4 |
| Cc: | cygwin AT sourceware DOT cygnus DOT com |
| Mime-Version: | 1.0 |
strip 2.9.4 in Binutils-2.9 has a bug when stripping a file accessed through a link, on systems that open files by default in text mode (such as cygwin).
The new executable file has an incorrect length.
I believe the bug occurs in the file binutils/objcopy.c, in the function
simple_copy. The open() and creat() below will open in text mode and the
copy won't be properly executed for binary files.
fromfd = open (from, O_RDONLY);
if (fromfd < 0)
return -1;
tofd = creat (to, 0777);
Pierre
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |