summaryrefslogtreecommitdiff
path: root/gdk-pixbuf-loader
diff options
context:
space:
mode:
authorDom Lachowicz <doml@src.gnome.org>2005-09-27 18:40:07 +0000
committerDom Lachowicz <doml@src.gnome.org>2005-09-27 18:40:07 +0000
commitbcf93a9d0744496446dedd025b5ac54b56c77818 (patch)
tree145ac04874c626b9bc4adcfe106256382c089b7a /gdk-pixbuf-loader
parent78e026f4aac4d640a04766ea3a0129edf53ad4ab (diff)
downloadlibrsvg-bcf93a9d0744496446dedd025b5ac54b56c77818.tar.gz
s/1024/100; it's a confidence level, not how much to check
Diffstat (limited to 'gdk-pixbuf-loader')
-rw-r--r--gdk-pixbuf-loader/io-svg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdk-pixbuf-loader/io-svg.c b/gdk-pixbuf-loader/io-svg.c
index a73785b5..8f952e37 100644
--- a/gdk-pixbuf-loader/io-svg.c
+++ b/gdk-pixbuf-loader/io-svg.c
@@ -203,13 +203,13 @@ void
fill_info (GdkPixbufFormat *info)
{
static GdkPixbufModulePattern signature_old[] = {
- { (unsigned char*) "<svg", NULL, 1024 },
- { (unsigned char*) "<!DOCTYPE svg", NULL, 1024 },
+ { (unsigned char*) "<svg", NULL, 100 },
+ { (unsigned char*) "<!DOCTYPE svg", NULL, 100 },
{ NULL, NULL, 0 }
};
static GdkPixbufModulePattern signature_new[] = {
- { (unsigned char*) " <svg", (unsigned char*) "* ", 1024 },
- { (unsigned char*) " <!DOCTYPE svg", (unsigned char*) "* ", 1024 },
+ { (unsigned char*) " <svg", (unsigned char*) "* ", 100 },
+ { (unsigned char*) " <!DOCTYPE svg", (unsigned char*) "* ", 100 },
{ NULL, NULL, 0 }
};
static gchar *mime_types[] = { /* yes folks, i actually have run into all of these in the wild... */