We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6752f commit fb81bddCopy full SHA for fb81bdd
1 file changed
ext/phar/phar_internal.h
@@ -246,10 +246,10 @@ struct _phar_archive_data {
246
char *fname;
247
uint32_t fname_len;
248
/* for phar_detect_fname_ext, this stores the location of the file extension within fname */
249
- char *ext;
250
uint32_t ext_len;
+ char *ext;
251
char *alias;
252
- uint32_t alias_len;
+ uint32_t alias_len;
253
char version[12];
254
size_t halt_offset;
255
HashTable manifest;
@@ -260,10 +260,10 @@ struct _phar_archive_data {
260
uint32_t flags;
261
uint32_t min_timestamp;
262
uint32_t max_timestamp;
263
+ int refcount;
264
php_stream *fp;
265
/* decompressed file contents are stored here */
266
php_stream *ufp;
- int refcount;
267
uint32_t sig_flags;
268
uint32_t sig_len;
269
char *signature;
0 commit comments