Use the correct index, reported by Tommi Komulainen.

2004-08-24  Matthias Clasen  <mclasen@redhat.com>

	* gdk-pixbuf-loader.c (gdk_pixbuf_loader_new_with_mime_type): Use
	the correct index, reported by Tommi Komulainen.
This commit is contained in:
Matthias Clasen 2004-08-24 19:53:58 +00:00 committed by Matthias Clasen
parent f7cbfbae15
commit 162354e628
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2004-08-24 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-loader.c (gdk_pixbuf_loader_new_with_mime_type): Use
the correct index, reported by Tommi Komulainen.
* gdk-pixdata.c (gdk_pixdata_from_pixbuf): Work around bugs in
the runlength encoder by forcing rowstride * height to be
divisible by bpp. (#150882)

View File

@ -600,7 +600,7 @@ gdk_pixbuf_loader_new_with_mime_type (const char *mime_type,
mimes = info->mime_types;
for (j = 0; mimes[j] != NULL; j++)
if (g_ascii_strcasecmp (mimes[i], mime_type)) {
if (g_ascii_strcasecmp (mimes[j], mime_type)) {
image_type = info->name;
break;
}