qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-trivial] [Qemu-devel] [PATCH v1] Changed malloc to g_malloc, f


From: haris iqbal
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH v1] Changed malloc to g_malloc, free to g_free in ui/shader.c
Date: Tue, 3 May 2016 15:16:10 +0530

Just a reminder. waiting for a review for the previous patch.

On Tue, Apr 5, 2016 at 6:51 PM, Md Haris Iqbal <address@hidden> wrote:
> Signed-off-by: Md Haris Iqbal <address@hidden>
> ---
>  ui/shader.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/ui/shader.c b/ui/shader.c
> index 9264009..1ffddbe 100644
> --- a/ui/shader.c
> +++ b/ui/shader.c
> @@ -83,12 +83,12 @@ GLuint qemu_gl_create_compile_shader(GLenum type, const 
> GLchar *src)
>      glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
>      if (!status) {
>          glGetShaderiv(shader, GL_INFO_LOG_LENGTH, &length);
> -        errmsg = malloc(length);
> +        errmsg = g_malloc(length);
>          glGetShaderInfoLog(shader, length, &length, errmsg);
>          fprintf(stderr, "%s: compile %s error\n%s\n", __func__,
>                  (type == GL_VERTEX_SHADER) ? "vertex" : "fragment",
>                  errmsg);
> -        free(errmsg);
> +        g_free(errmsg);
>          return 0;
>      }
>      return shader;
> @@ -108,10 +108,10 @@ GLuint qemu_gl_create_link_program(GLuint vert, GLuint 
> frag)
>      glGetProgramiv(program, GL_LINK_STATUS, &status);
>      if (!status) {
>          glGetProgramiv(program, GL_INFO_LOG_LENGTH, &length);
> -        errmsg = malloc(length);
> +        errmsg = g_malloc(length);
>          glGetProgramInfoLog(program, length, &length, errmsg);
>          fprintf(stderr, "%s: link program: %s\n", __func__, errmsg);
> -        free(errmsg);
> +        g_free(errmsg);
>          return 0;
>      }
>      return program;
> --
> 1.9.1
>



-- 

With regards,

Md Haris Iqbal,
Placement Coordinator, MTech IT
NITK Surathkal,
Contact: +91 8861996962



reply via email to

[Prev in Thread] Current Thread [Next in Thread]