Skip to content

Commit

Permalink
Fix #799 Update IO::String
Browse files Browse the repository at this point in the history
  • Loading branch information
mherger committed Dec 1, 2022
1 parent 3a08d91 commit 4587ea5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
14 changes: 4 additions & 10 deletions CPAN/IO/String.pm
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package IO::String;

# Copyright 1998-2004 Gisle Aas.
# Copyright 1998-2005 Gisle Aas.
#
# This library is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

require 5.005_03;
use strict;
use vars qw($VERSION $DEBUG $IO_CONSTANTS);
$VERSION = "1.07"; # $Date: 2005-11-07 19:19:03 -0500 (Mon, 07 Nov 2005) $
$VERSION = "1.08"; # $Date: 2005/12/05 12:00:47 $

use Symbol ();

Expand Down Expand Up @@ -79,13 +79,7 @@ sub close
delete *$self->{buf};
delete *$self->{pos};
delete *$self->{lno};
if ($] >= 5.006 && $[ < 5.007) {
# perl-5.6.x segfaults on untie, so avoid it
}
else {
untie *$self;
undef *$self;
}
undef *$self if $] eq "5.008"; # workaround for some bug
return 1;
}

Expand Down Expand Up @@ -549,7 +543,7 @@ L<IO::File>, L<IO::Stringy>, L<perlfunc/open>
=head1 COPYRIGHT
Copyright 1998-2003 Gisle Aas.
Copyright 1998-2005 Gisle Aas.
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Expand Down
1 change: 1 addition & 0 deletions Changelog8.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ <h2><a name="v8.4.0" id="v8.4.0"></a>Version 8.4.0</h2>
<li>Bug Fixes:</li>
<ul>
<li><a href="https://github.com/Logitech/slimserver/issues/622">#622</a>__requestRE should only match words provided to Slim::Control::Request::subscribe. (thanks earlchew!)</li>
<li><a href="https://github.com/Logitech/slimserver/issues/799">#799</a>Update IO::String to latest, fixing some odd Perl version check.</li>
<li><a href="https://github.com/Logitech/slimserver/issues/829">#829</a>Don't override a content type set by a page handler.</li>
<li></li>
</ul>
Expand Down

0 comments on commit 4587ea5

Please sign in to comment.