Bounds check length of ubifs data node for hexdump

Due to corrupt ubifs meta data and a missing bounds check
dbg_dump_node() tried to dump a data buffer of length -1. The value -1
got coerced into a size_t. Since size_t is unsigned, print_hex_dump()
attempted to dump 0xFFFFFFFF bytes of data and eventually caused a page
fault.

Change-Id: I9d1fc1027d3c2118c0796f214c34ce93e8915a25
1 file changed