1--TEST--
2Bug #20934 (html_entity_decode() crash when "" is passed)
3--FILE--
4<?php
5	var_dump(html_entity_decode(NULL));
6	var_dump(html_entity_decode(""));
7?>
8--EXPECT--
9string(0) ""
10string(0) ""
11