Skip to content

Commit 7c64d23

Browse files
authored
Merge pull request #242 from nextcloud/bump/icewind/streams/v0.7.1
Bump icewind/streams to 0.7.1
2 parents 3eeed44 + a80ed08 commit 7c64d23

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"doctrine/dbal": "2.7.2",
2020
"guzzlehttp/guzzle": "6.3.3",
2121
"icewind/searchdav": "1.0.1",
22-
"icewind/streams": "v0.7.0",
22+
"icewind/streams": "v0.7.1",
2323
"interfasys/lognormalizer": "^v1.0",
2424
"jeremeamia/SuperClosure": "^2.4",
2525
"leafo/scssphp": "0.7.7",

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer/installed.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,17 +1358,17 @@
13581358
},
13591359
{
13601360
"name": "icewind/streams",
1361-
"version": "v0.7.0",
1362-
"version_normalized": "0.7.0.0",
1361+
"version": "v0.7.1",
1362+
"version_normalized": "0.7.1.0",
13631363
"source": {
13641364
"type": "git",
13651365
"url": "https://github.com/icewind1991/Streams.git",
1366-
"reference": "e1b5ac12e9482c3679388f677d6e7a5268b4fdcf"
1366+
"reference": "4db3ed6c366e90b958d00e1d4c6360a9b39b2121"
13671367
},
13681368
"dist": {
13691369
"type": "zip",
1370-
"url": "https://api.github.com/repos/icewind1991/Streams/zipball/e1b5ac12e9482c3679388f677d6e7a5268b4fdcf",
1371-
"reference": "e1b5ac12e9482c3679388f677d6e7a5268b4fdcf",
1370+
"url": "https://api.github.com/repos/icewind1991/Streams/zipball/4db3ed6c366e90b958d00e1d4c6360a9b39b2121",
1371+
"reference": "4db3ed6c366e90b958d00e1d4c6360a9b39b2121",
13721372
"shasum": ""
13731373
},
13741374
"require": {
@@ -1378,7 +1378,7 @@
13781378
"phpunit/phpunit": "^4.8",
13791379
"satooshi/php-coveralls": "v1.0.0"
13801380
},
1381-
"time": "2019-02-14T15:43:18+00:00",
1381+
"time": "2019-02-15T12:57:29+00:00",
13821382
"type": "library",
13831383
"installation-source": "dist",
13841384
"autoload": {

icewind/streams/src/CallbackWrapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function stream_open($path, $mode, $options, &$opened_path) {
9797
public function stream_read($count) {
9898
$result = parent::stream_read($count);
9999
if (is_callable($this->readCallback)) {
100-
call_user_func($this->readCallback, $result);
100+
call_user_func($this->readCallback, strlen($result));
101101
}
102102
return $result;
103103
}

0 commit comments

Comments
 (0)