diff options
author | Jacob Pipkin <d4wnr4z0r@yahoo.com> | 2012-05-08 02:22:37 -0500 |
---|---|---|
committer | Jacob Pipkin <d4wnr4z0r@yahoo.com> | 2012-05-08 02:22:37 -0500 |
commit | b1e943c7731906bb2ec37959e8f962acd3922968 (patch) | |
tree | c576bd7f2b772126f9e1ba59dae677bd13085bea /SBO-Lib/lib/SBO/Lib.pm | |
parent | 5f33adc67362914ab61b9e464c7132344f719ba9 (diff) | |
download | sbotools2-b1e943c7731906bb2ec37959e8f962acd3922968.tar.xz |
calling close() on not a file handle
Diffstat (limited to 'SBO-Lib/lib/SBO/Lib.pm')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index 80ba702..72b66ca 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -372,7 +372,7 @@ sub find_download_info { push(@return,$line); } } - close($return); + close($info); return @return if exists $return[0]; return; } |