block/vvfat: Fix compiler warning with gcc 7
commit7c8730d45f63b76588da5ea0d4eff73a0bcae188
authorMax Reitz <mreitz@redhat.com>
Mon, 17 Jul 2017 15:12:07 +0000 (17 17:12 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 18 Jul 2017 13:14:36 +0000 (18 15:14 +0200)
tree9f2dd0021e6be78d79b9982ed63e85d1b76c1fe6
parentf80256b7eebfbe20683b3a2b2720ad9991313761
block/vvfat: Fix compiler warning with gcc 7

gcc 7 complains that the sprintf() might write a null byte beyond the
end of the tail buffer.  That is wrong, but we can silence it by making
i unsigned (it can never be negative anyway, see the if condition right
before).  For some reason, this allows gcc to suddenly accurately
calculate the range of i so we can give the tail[] array the exact size
it needs to have (which is 8 bytes) without gcc complaining.

In addition, let us convert the sprintf() to snprintf(), because that is
always nicer, and add an assertion about the range of the return value
afterwards so we can see that "8 - len" will never be negative and thus
"entry->name + MIN(j, 8 - len)" will never be out of bounds.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/vvfat.c