Skip to content

Commit 453f9e1

Browse files
committed
ext/phar: pad phar globals struct
This saves 16 bytes
1 parent a5f6165 commit 453f9e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/phar/phar_internal.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ ZEND_BEGIN_MODULE_GLOBALS(phar)
105105
/* for cached phars, this is a per-process store of fp/ufp */
106106
phar_entry_fp *cached_fp;
107107
HashTable phar_alias_map;
108-
int phar_SERVER_mung_list;
109108
char* cache_list;
109+
int phar_SERVER_mung_list;
110110
bool readonly;
111111
bool manifest_cached;
112112
bool persist;
@@ -150,8 +150,8 @@ ZEND_BEGIN_MODULE_GLOBALS(phar)
150150
/* phar_get_archive cache */
151151
char* last_phar_name;
152152
uint32_t last_phar_name_len;
153-
char* last_alias;
154153
uint32_t last_alias_len;
154+
char* last_alias;
155155
phar_archive_data* last_phar;
156156
HashTable mime_types;
157157
ZEND_END_MODULE_GLOBALS(phar)

0 commit comments

Comments
 (0)