]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/xpm/RdFToBuf.c
2 * Copyright (C) 1989-95 GROUPE BULL
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * Except as contained in this notice, the name of GROUPE BULL shall not be
22 * used in advertising or otherwise to promote the sale, use or other dealings
23 * in this Software without prior written authorization from GROUPE BULL.
26 /*****************************************************************************\
30 * Copy a file to a malloc'ed buffer, provided as a convenience. *
32 * Developed by Arnaud Le Hors *
33 \*****************************************************************************/
36 * The code related to FOR_MSW has been added by
37 * HeDu (hedu@cul-ipn.uni-kiel.de) 4/94
53 #if !defined(FOR_MSW) && !defined(WIN32)
59 #if defined(FOR_MSW) || defined(WIN32)
63 #define fdopen _fdopen
64 #define O_RDONLY _O_RDONLY
69 XpmReadFileToBuffer(filename
, buffer_return
)
78 *buffer_return
= NULL
;
81 fd
= open(filename
, O_RDONLY
);
83 fd
= open(filename
, O_RDONLY
, NULL
);
88 if (fstat(fd
, &stats
)) {
97 len
= (int) stats
.st_size
;
98 ptr
= (char *) XpmMalloc(len
+ 1);
103 fcheck
= fread(ptr
, 1, len
, fp
);
106 /* VMS often stores text files in a variable-length record format,
107 where there are two bytes of size followed by the record. fread
108 converts this so it looks like a record followed by a newline.
109 Unfortunately, the size reported by fstat() (and fseek/ftell)
110 counts the two bytes for the record terminator, while fread()
111 counts only one. So, fread() sees fewer bytes in the file (size
112 minus # of records) and thus when asked to read the amount
113 returned by stat(), it fails.
114 The best solution, suggested by DEC, seems to consider the length
115 returned from fstat() as an upper bound and call fread() with
116 a record length of 1. Then don't check the return value.
117 We'll check for 0 for gross error that's all.
125 return XpmOpenFailed
;
128 *buffer_return
= ptr
;