]> Pileus Git - ~andy/gtk/blobdiff - gdk-pixbuf/io-jpeg.c
contrib subdir
[~andy/gtk] / gdk-pixbuf / io-jpeg.c
index 89ca8d2015e1ab4ae06e46b990a947ce6520a2ff..623077738d93724b033bfbc15ff3a74c412c13b9 100644 (file)
@@ -196,7 +196,7 @@ gdk_pixbuf__jpeg_image_load (FILE *f)
        w = cinfo.output_width;
        h = cinfo.output_height;
 
-       pixels = g_malloc (h * w * 3);
+       pixels = malloc (h * w * 3);
        if (!pixels) {
                jpeg_destroy_decompress (&cinfo);
                return NULL;