From: Jeff King Date: Fri, 15 Jun 2018 03:31:58 +0000 (-0400) Subject: ewah: drop ewah_deserialize function X-Git-Tag: v2.19.0-rc0~164^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/caa88140d4cc9e0ac79bb5d9d6569fe7d08a93a8?ds=inline;hp=caa88140d4cc9e0ac79bb5d9d6569fe7d08a93a8 ewah: drop ewah_deserialize function We don't call this function, and in fact never have since it was added (at least not in iterations of the ewah patches that got merged). Instead we use ewah_read_mmap(). Let's drop the unused code. Note to anybody who later wants to resurrect this: it does not check for integer overflow in the ewah data size, meaning it may be possible to convince the code to allocate a too-small buffer and read() into it. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano ---