return DICT_ERR if expand was not performed */
| 189 | |
| 190 | /* return DICT_ERR if expand was not performed */ |
| 191 | int dictExpand(dict *d, unsigned long size) { |
| 192 | return _dictExpand(d, size, NULL); |
| 193 | } |
| 194 | |
| 195 | /* return DICT_ERR if expand failed due to memory allocation failure */ |
| 196 | int dictTryExpand(dict *d, unsigned long size) { |
no test coverage detected