* [Qemu-devel] [PATCH] block/vdi: Fix wrong size in conditionally used memset, memcmp
@ 2011-02-04 20:01 Stefan Weil
2011-02-04 20:19 ` Anthony Liguori
0 siblings, 1 reply; 3+ messages in thread
From: Stefan Weil @ 2011-02-04 20:01 UTC (permalink / raw)
To: QEMU Developers; +Cc: Kevin Wolf
Error report from cppcheck:
block/vdi.c:122: error: Using sizeof for array given as function argument returns the size of pointer.
block/vdi.c:128: error: Using sizeof for array given as function argument returns the size of pointer.
Fix both by setting the correct size.
The buggy code is only used when QEMU is build without uuid support.
The bug is not critical, so there is no urgent need to apply it to
old versions of QEMU.
Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
block/vdi.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/block/vdi.c b/block/vdi.c
index 83b9c04..083266e 100644
--- a/block/vdi.c
+++ b/block/vdi.c
@@ -119,13 +119,13 @@ void uuid_unparse(const uuid_t uu, char *out);
#if !defined(CONFIG_UUID)
void uuid_generate(uuid_t out)
{
- memset(out, 0, sizeof(out));
+ memset(out, 0, sizeof(uuid_t));
}
int uuid_is_null(const uuid_t uu)
{
uuid_t null_uuid = { 0 };
- return memcmp(uu, null_uuid, sizeof(uu)) == 0;
+ return memcmp(uu, null_uuid, sizeof(uuid_t)) == 0;
}
void uuid_unparse(const uuid_t uu, char *out)
--
1.7.2.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] block/vdi: Fix wrong size in conditionally used memset, memcmp
2011-02-04 20:01 [Qemu-devel] [PATCH] block/vdi: Fix wrong size in conditionally used memset, memcmp Stefan Weil
@ 2011-02-04 20:19 ` Anthony Liguori
2011-02-07 9:12 ` Kevin Wolf
0 siblings, 1 reply; 3+ messages in thread
From: Anthony Liguori @ 2011-02-04 20:19 UTC (permalink / raw)
To: Stefan Weil; +Cc: Kevin Wolf, QEMU Developers
On 02/04/2011 02:01 PM, Stefan Weil wrote:
> Error report from cppcheck:
> block/vdi.c:122: error: Using sizeof for array given as function argument returns the size of pointer.
> block/vdi.c:128: error: Using sizeof for array given as function argument returns the size of pointer.
>
> Fix both by setting the correct size.
>
> The buggy code is only used when QEMU is build without uuid support.
> The bug is not critical, so there is no urgent need to apply it to
> old versions of QEMU.
>
> Cc: Kevin Wolf<kwolf@redhat.com>
> Signed-off-by: Stefan Weil<weil@mail.berlios.de>
>
Huh, I wouldn't have thought this was the case. I almost feel that
doing a #define UUID_SIZE may be better because sizeof(typeof(v)) !=
sizeof(v) is weird even by C standards.
Regards,
Anthony Liguori
> ---
> block/vdi.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/block/vdi.c b/block/vdi.c
> index 83b9c04..083266e 100644
> --- a/block/vdi.c
> +++ b/block/vdi.c
> @@ -119,13 +119,13 @@ void uuid_unparse(const uuid_t uu, char *out);
> #if !defined(CONFIG_UUID)
> void uuid_generate(uuid_t out)
> {
> - memset(out, 0, sizeof(out));
> + memset(out, 0, sizeof(uuid_t));
> }
>
> int uuid_is_null(const uuid_t uu)
> {
> uuid_t null_uuid = { 0 };
> - return memcmp(uu, null_uuid, sizeof(uu)) == 0;
> + return memcmp(uu, null_uuid, sizeof(uuid_t)) == 0;
> }
>
> void uuid_unparse(const uuid_t uu, char *out)
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] block/vdi: Fix wrong size in conditionally used memset, memcmp
2011-02-04 20:19 ` Anthony Liguori
@ 2011-02-07 9:12 ` Kevin Wolf
0 siblings, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2011-02-07 9:12 UTC (permalink / raw)
To: Anthony Liguori; +Cc: QEMU Developers
Am 04.02.2011 21:19, schrieb Anthony Liguori:
> On 02/04/2011 02:01 PM, Stefan Weil wrote:
>> Error report from cppcheck:
>> block/vdi.c:122: error: Using sizeof for array given as function argument returns the size of pointer.
>> block/vdi.c:128: error: Using sizeof for array given as function argument returns the size of pointer.
>>
>> Fix both by setting the correct size.
>>
>> The buggy code is only used when QEMU is build without uuid support.
>> The bug is not critical, so there is no urgent need to apply it to
>> old versions of QEMU.
>>
>> Cc: Kevin Wolf<kwolf@redhat.com>
>> Signed-off-by: Stefan Weil<weil@mail.berlios.de>
Thanks, applied to the block branch.
> Huh, I wouldn't have thought this was the case. I almost feel that
> doing a #define UUID_SIZE may be better because sizeof(typeof(v)) !=
> sizeof(v) is weird even by C standards.
I think typeof(uu) is actually unsigned char*, not unsigned char[16].
Strange semantics anyway...
Kevin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-02-07 9:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-04 20:01 [Qemu-devel] [PATCH] block/vdi: Fix wrong size in conditionally used memset, memcmp Stefan Weil
2011-02-04 20:19 ` Anthony Liguori
2011-02-07 9:12 ` Kevin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).