projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
ce3e5c4
)
Note in av_store() that S_regclass relies on being able to pass NULL.
Nicholas Clark [Mon, 17 Apr 2006 13:15:34 +0000 (13:15 +0000)]
p4raw-id: //depot/perl@27868
av.c
patch
|
blob
|
blame
|
history
diff --git
a/av.c
b/av.c
index
423d006
..
5f04d05
100644
(file)
--- a/
av.c
+++ b/
av.c
@@
-284,6
+284,10
@@
Perl_av_store(pTHX_ register AV *av, I32 key, SV *val)
assert(av);
+ /* S_regclass relies on being able to pass in a NULL sv
+ (unicode_alternate may be NULL).
+ */
+
if (!val)
val = &PL_sv_undef;