summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/class/stream.class.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php
index 72cafa33..e274e78a 100644
--- a/lib/class/stream.class.php
+++ b/lib/class/stream.class.php
@@ -609,12 +609,10 @@ class Stream {
$message = "Start Downsample: $downsample_command";
debug_event('downsample',$message,'3');
- $fp = @popen($downsample_command, 'rb');
+ $fp = popen($downsample_command, 'rb');
- /* We need more than just the handle here */
- $return_array['handle'] = $fp;
-
- return ($return_array);
+ // Return our new handle
+ return ($fp);
} // start_downsample