mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Initialize temp with 0, avoiding compile warning
This commit is contained in:
parent
66527e38cc
commit
ad0cfd9865
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ static int phar_stream_seek(php_stream *stream, off_t offset, int whence, off_t
|
|||
phar_entry_data *data = (phar_entry_data *)stream->abstract;
|
||||
phar_entry_info *entry;
|
||||
int res;
|
||||
off_t temp;
|
||||
off_t temp = 0;
|
||||
|
||||
if (data->internal_file->link) {
|
||||
entry = phar_get_link_source(data->internal_file TSRMLS_CC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue