You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Leaks memory when passed an expression that returns a non-existent hash value (which should be effectively undef). For example the following loop leaks ~70 MiB per second on my system.
use Clone;
my$data = {};
while(1) {
Clone::clone ($data->{no_such_key});
};
However if you save the hash value in an intermediate variable, it doesn't leak:
Leaks memory when passed an expression that returns a non-existent hash value (which should be effectively
undef
). For example the following loop leaks ~70 MiB per second on my system.However if you save the hash value in an intermediate variable, it doesn't leak:
Environment
I was able to reproduce it in these environments:
The text was updated successfully, but these errors were encountered: