84 |
|
uint32 type; |
85 |
|
uint32 creator; |
86 |
|
uint16 flags; |
87 |
< |
uint16 pad0; |
87 |
> |
uint8 pad0[22]; // total size: 32 bytes to match the size of FInfo+FXInfo |
88 |
|
}; |
89 |
|
|
90 |
|
static void make_helper_path(const char *src, char *dest, const char *add, bool only_dir = false) |
221 |
|
|
222 |
|
// Read file |
223 |
|
finf_struct finf; |
224 |
< |
if (read(fd, &finf, sizeof(finf_struct)) == sizeof(finf_struct)) { |
224 |
> |
if (read(fd, &finf, sizeof(finf_struct)) >= 8) { |
225 |
|
|
226 |
|
// Type/creator are in Finder info file, return them |
227 |
|
type = ntohl(finf.type); |
254 |
|
return; |
255 |
|
|
256 |
|
// Read file |
257 |
< |
finf_struct finf = {0, 0, DEFAULT_FINDER_FLAGS, 0}; |
257 |
> |
finf_struct finf; |
258 |
> |
finf.flags = DEFAULT_FINDER_FLAGS; |
259 |
> |
memset(&finf, 0, sizeof(finf_struct)); |
260 |
|
read(fd, &finf, sizeof(finf_struct)); |
261 |
|
|
262 |
|
// Set Finder flags |
285 |
|
|
286 |
|
// Read Finder flags |
287 |
|
finf_struct finf; |
288 |
< |
if (read(fd, &finf, sizeof(finf_struct)) == sizeof(finf_struct)) |
288 |
> |
if (read(fd, &finf, sizeof(finf_struct)) >= 10) |
289 |
|
flags = ntohs(finf.flags); |
290 |
|
|
291 |
|
// Close file |
300 |
|
return; |
301 |
|
|
302 |
|
// Read file |
303 |
< |
finf_struct finf = {0, 0, DEFAULT_FINDER_FLAGS, 0}; |
303 |
> |
finf_struct finf; |
304 |
> |
memset(&finf, 0, sizeof(finf_struct)); |
305 |
> |
finf.flags = DEFAULT_FINDER_FLAGS; |
306 |
|
read(fd, &finf, sizeof(finf_struct)); |
307 |
|
|
308 |
|
// Set Finder flags |