# I do too much C++ and too much languages anyway, right now actively:
# C, C++, Java, PHP, Peral
static size_t php_stream_temp_read(php_stream *stream, char *buf, size_t count TSRMLS_DC)
{
php_stream_temp_data *ts;
+ size_t got;
assert(stream != NULL);
ts = stream->abstract;
assert(ts != NULL);
- size_t got = php_stream_read(ts->innerstream, buf, count);
+ got = php_stream_read(ts->innerstream, buf, count);
if (!got) {
stream->eof |= ts->innerstream->eof;