diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-04-13 21:12:51 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-04-13 21:12:51 +0000 |
commit | 573ad4e29d6b307cd00c8a921d60beb5ab5cafe7 (patch) | |
tree | 4e6976af92eeda471701d3962e2a85207f95dfd6 /graphics | |
parent | 0fb1b18f7c7be3a8b6dba09697d4906ffc991348 (diff) |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libexif/Makefile | 1 | ||||
-rw-r--r-- | graphics/libexif/files/patch-libexif-exif-data.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/graphics/libexif/Makefile b/graphics/libexif/Makefile index a35a560a6f2f..38f8e3b10dd2 100644 --- a/graphics/libexif/Makefile +++ b/graphics/libexif/Makefile @@ -7,6 +7,7 @@ PORTNAME= libexif PORTVERSION= 0.6.12 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/graphics/libexif/files/patch-libexif-exif-data.c b/graphics/libexif/files/patch-libexif-exif-data.c new file mode 100644 index 000000000000..e8471c262f10 --- /dev/null +++ b/graphics/libexif/files/patch-libexif-exif-data.c @@ -0,0 +1,11 @@ +--- libexif/exif-data.c.orig Sun Mar 13 03:27:13 2005 ++++ libexif/exif-data.c Wed Apr 13 22:42:35 2005 +@@ -231,7 +231,7 @@ + * the offset must be an even number. If we need to introduce + * a padding byte, we set it to 0. + */ +- if (s & 1) *ds++; ++ if (s & 1) (*ds)++; + *d = exif_mem_realloc (data->priv->mem, *d, *ds); + if (!*d) { + EXIF_LOG_NO_MEMORY (data->priv->log, "ExifData", *ds); |