Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Fixed malformed UTF8 key writing.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuc82 committed Apr 13, 2015
1 parent 2bfa2e1 commit 7f89330
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Kernel/System/Main.pm
Expand Up @@ -1056,6 +1056,16 @@ sub _Dump {

# start recursion
$Self->_Dump( \${$Data}->{$Key} );

my $KeyNew = $Key;

$Self->_Dump( \$KeyNew );

if ( $Key ne $KeyNew ) {

${$Data}->{$KeyNew} = ${$Data}->{$Key};
delete ${$Data}->{$Key};
}
}

return;
Expand Down

0 comments on commit 7f89330

Please sign in to comment.