diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2010-03-30 13:55:19 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2010-03-30 13:55:19 +0000 |
commit | 479e29c6d55e7e5e2254792d702f774ff8fb051d (patch) | |
tree | 7ff276bfc294d7a15b356cfff63f24ab2fe0cb87 /graphics/imlib2 | |
parent | c2f411108f818546a4b897298e2d60fe63140c8e (diff) | |
download | ports-479e29c6d55e7e5e2254792d702f774ff8fb051d.tar.gz ports-479e29c6d55e7e5e2254792d702f774ff8fb051d.zip |
Notes
Diffstat (limited to 'graphics/imlib2')
-rw-r--r-- | graphics/imlib2/Makefile | 2 | ||||
-rw-r--r-- | graphics/imlib2/files/patch-loader_png.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/imlib2/Makefile b/graphics/imlib2/Makefile index 24055314dc34..8187b01b9562 100644 --- a/graphics/imlib2/Makefile +++ b/graphics/imlib2/Makefile @@ -7,7 +7,7 @@ PORTNAME= imlib2 PORTVERSION= 1.4.1.000 -PORTREVISION= 8 +PORTREVISION= 9 PORTEPOCH= 2 CATEGORIES= graphics MASTER_SITES= ftp://ftp.springdaemons.com/pub/snapshots/e17/ \ diff --git a/graphics/imlib2/files/patch-loader_png.c b/graphics/imlib2/files/patch-loader_png.c index 5444c6260bad..ce76ad89d42e 100644 --- a/graphics/imlib2/files/patch-loader_png.c +++ b/graphics/imlib2/files/patch-loader_png.c @@ -5,7 +5,7 @@ /* if we haven't read the header before, set the header data */ fread(buf, 1, PNG_BYTES_TO_CHECK, f); - if (!png_check_sig(buf, PNG_BYTES_TO_CHECK)) -+ if (png_check_sig(buf, 0, PNG_BYTES_TO_CHECK) != 0) ++ if (png_sig_cmp(buf, 0, PNG_BYTES_TO_CHECK)) { fclose(f); return 0; |