1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

reduce size by 8 byte on 64 bit

This commit is contained in:
Anatol Belski
2014-09-12 22:06:10 +02:00
parent c22458adc5
commit 8fc0f1a788

View File

@@ -63,14 +63,14 @@ typedef struct _zend_stream {
} zend_stream;
typedef struct _zend_file_handle {
zend_stream_type type;
const char *filename;
char *opened_path;
union {
int fd;
FILE *fp;
zend_stream stream;
} handle;
const char *filename;
char *opened_path;
zend_stream_type type;
zend_bool free_filename;
} zend_file_handle;