a82cae
diff --git a/Storable.pm b/Storable.pm
a82cae
index 9d8b621..c8f6db1 100644
a82cae
--- a/Storable.pm
a82cae
+++ b/Storable.pm
a82cae
@@ -22,7 +22,7 @@ package Storable; @ISA = qw(Exporter);
a82cae
 
a82cae
 use vars qw($canonical $forgive_me $VERSION);
a82cae
 
a82cae
-$VERSION = '2.53';
a82cae
+$VERSION = '2.56';
a82cae
 
a82cae
 BEGIN {
a82cae
     if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) {
a82cae
@@ -979,43 +979,43 @@ such.
a82cae
 
a82cae
 Here are some code samples showing a possible usage of Storable:
a82cae
 
a82cae
-	use Storable qw(store retrieve freeze thaw dclone);
a82cae
+ use Storable qw(store retrieve freeze thaw dclone);
a82cae
 
a82cae
-	%color = ('Blue' => 0.1, 'Red' => 0.8, 'Black' => 0, 'White' => 1);
a82cae
+ %color = ('Blue' => 0.1, 'Red' => 0.8, 'Black' => 0, 'White' => 1);
a82cae
 
a82cae
-	store(\%color, 'mycolors') or die "Can't store %a in mycolors!\n";
a82cae
+ store(\%color, 'mycolors') or die "Can't store %a in mycolors!\n";
a82cae
 
a82cae
-	$colref = retrieve('mycolors');
a82cae
-	die "Unable to retrieve from mycolors!\n" unless defined $colref;
a82cae
-	printf "Blue is still %lf\n", $colref->{'Blue'};
a82cae
+ $colref = retrieve('mycolors');
a82cae
+ die "Unable to retrieve from mycolors!\n" unless defined $colref;
a82cae
+ printf "Blue is still %lf\n", $colref->{'Blue'};
a82cae
 
a82cae
-	$colref2 = dclone(\%color);
a82cae
+ $colref2 = dclone(\%color);
a82cae
 
a82cae
-	$str = freeze(\%color);
a82cae
-	printf "Serialization of %%color is %d bytes long.\n", length($str);
a82cae
-	$colref3 = thaw($str);
a82cae
+ $str = freeze(\%color);
a82cae
+ printf "Serialization of %%color is %d bytes long.\n", length($str);
a82cae
+ $colref3 = thaw($str);
a82cae
 
a82cae
 which prints (on my machine):
a82cae
 
a82cae
-	Blue is still 0.100000
a82cae
-	Serialization of %color is 102 bytes long.
a82cae
+ Blue is still 0.100000
a82cae
+ Serialization of %color is 102 bytes long.
a82cae
 
a82cae
 Serialization of CODE references and deserialization in a safe
a82cae
 compartment:
a82cae
 
a82cae
 =for example begin
a82cae
 
a82cae
-	use Storable qw(freeze thaw);
a82cae
-	use Safe;
a82cae
-	use strict;
a82cae
-	my $safe = new Safe;
a82cae
+ use Storable qw(freeze thaw);
a82cae
+ use Safe;
a82cae
+ use strict;
a82cae
+ my $safe = new Safe;
a82cae
         # because of opcodes used in "use strict":
a82cae
-	$safe->permit(qw(:default require));
a82cae
-	local $Storable::Deparse = 1;
a82cae
-	local $Storable::Eval = sub { $safe->reval($_[0]) };
a82cae
-	my $serialized = freeze(sub { 42 });
a82cae
-	my $code = thaw($serialized);
a82cae
-	$code->() == 42;
a82cae
+ $safe->permit(qw(:default require));
a82cae
+ local $Storable::Deparse = 1;
a82cae
+ local $Storable::Eval = sub { $safe->reval($_[0]) };
a82cae
+ my $serialized = freeze(sub { 42 });
a82cae
+ my $code = thaw($serialized);
a82cae
+ $code->() == 42;
a82cae
 
a82cae
 =for example end
a82cae
 
a82cae
diff --git a/Storable.xs b/Storable.xs
a82cae
index e7d0329..83cd001 100644
a82cae
--- a/Storable.xs
a82cae
+++ b/Storable.xs
a82cae
@@ -1667,6 +1667,7 @@ static void free_context(pTHX_ stcxt_t *cxt)
a82cae
 
a82cae
 	ASSERT(!cxt->s_dirty, ("clean context"));
a82cae
 	ASSERT(prev, ("not freeing root context"));
a82cae
+	assert(prev);
a82cae
 
a82cae
 	SvREFCNT_dec(cxt->my_sv);
a82cae
 	SET_STCXT(prev);
a82cae
@@ -6677,6 +6678,7 @@ SV *	obj
a82cae
  ALIAS:
a82cae
   net_mstore = 1
a82cae
  CODE:
a82cae
+  RETVAL = &PL_sv_undef;
a82cae
   if (!do_store(aTHX_ (PerlIO*) 0, obj, 0, ix, &RETVAL))
a82cae
     RETVAL = &PL_sv_undef;
a82cae
  OUTPUT: