qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Lionel Landwerlin <lionel.landwerlin@openwide.fr>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] PATCH: qemu_mallocz(): minus one function and replace calloc() instead malloc()
Date: Wed, 28 Jan 2009 20:33:08 +0100	[thread overview]
Message-ID: <1233171188.6716.3.camel@cocoduo.atr> (raw)
In-Reply-To: <200901282144.55730.pavel@pavlinux.ru>

Le mercredi 28 janvier 2009 à 21:44 +0300, Pavel Vasilyev a écrit :
> May be this better? 
> 
> 
> 
> --- qemu-malloc.c Base (BASE)
> +++ qemu-malloc.c Locally Modified (Based On LOCAL)
> @@ -46,10 +46,9 @@
>  void *(size_t size)
>  {
>      void *ptr;
> -    ptr = qemu_malloc(size);
> +    ptr = calloc(1, size);
>      if (!ptr)
>          return NULL;
> -    memset(ptr, 0, size);
>      return ptr;
>  }
>  

This is allocation in system emulation, Malc patch's was about user
emulation.

-- 
Lione Landwerlin                                         

O p e n W i d e                    14, rue Gaillon 75002 Paris

  reply	other threads:[~2009-01-28 19:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-28 17:16 [Qemu-devel] [6466] Fix qemu_malloc malc
2009-01-28 18:44 ` [Qemu-devel] PATCH: qemu_mallocz(): minus one function and replace calloc() instead malloc() Pavel Vasilyev
2009-01-28 19:33   ` Lionel Landwerlin [this message]
2009-01-28 20:00     ` malc

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1233171188.6716.3.camel@cocoduo.atr \
    --to=lionel.landwerlin@openwide.fr \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).