OSDN Git Service

dmg: use appropriate types when reading chunks
authorStefan Hajnoczi <stefanha@redhat.com>
Wed, 26 Mar 2014 12:05:57 +0000 (13:05 +0100)
committerStefan Hajnoczi <stefanha@redhat.com>
Tue, 1 Apr 2014 13:22:35 +0000 (15:22 +0200)
commiteb71803b041f55779ea10d860c0f66df285c68de
tree62b7f3746f237a5e3821b66e618d40622d0078d9
parentb404bf854217dbe8a5649449eb3ad33777f7d900
dmg: use appropriate types when reading chunks

Use the right types instead of signed int:

  size_t new_size;

  This is a byte count for g_realloc() that is calculated from uint32_t
  and size_t values.

  uint32_t chunk_count;

  Use the same type as s->n_chunks, which is used together with
  chunk_count.

This patch is a cleanup and does not fix bugs.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
block/dmg.c