mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 22:51:26 +08:00
jartool.c (extract_jar): Use "open" with O_BINARY instead of "creat" to create extracted files.
2002-11-21 Ranjit Mathew <rmathew@hotmail.com> * jartool.c (extract_jar): Use "open" with O_BINARY instead of "creat" to create extracted files. From-SVN: r59366
This commit is contained in:
parent
57de2c8fb8
commit
7fe75c0324
@ -1,3 +1,8 @@
|
||||
2002-11-21 Ranjit Mathew <rmathew@hotmail.com>
|
||||
|
||||
* jartool.c (extract_jar): Use "open" with O_BINARY instead of
|
||||
"creat" to create extracted files.
|
||||
|
||||
2002-11-11 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* dostime.c (dos2unixtime): Mask for seconds is 0x1f. Correctly
|
||||
|
@ -1455,7 +1455,8 @@ int extract_jar(int fd, char **files, int file_num){
|
||||
}
|
||||
|
||||
if(f_fd != -1 && handle){
|
||||
f_fd = creat((const char *)filename, 00644);
|
||||
f_fd = open((const char *)filename,
|
||||
O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
|
||||
|
||||
if(f_fd < 0){
|
||||
fprintf(stderr, "Error extracting JAR archive!\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user