summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorbfriesen <bfriesen>2015-05-30 20:15:59 +0000
committerbfriesen <bfriesen>2015-05-30 20:15:59 +0000
commit5f2152715d580047207050f9818b6e66dc6bb324 (patch)
tree186fee872d5d4930e26dfce7a4c40625279bde6d /configure.ac
parenta7404a20359931ff6096533ee165be236042d715 (diff)
downloadlibtiff-5f2152715d580047207050f9818b6e66dc6bb324.tar.gz
* tools/gif2tiff.c (readgifimage): Fix Coverity 1024222 "Untrusted
value as argument". (checksignature): Fix Coverity 1024894 "Ignoring number of bytes read". (readextension): Fix Coverity 1024893 "Ignoring number of bytes read". (readgifimage): Fix Coverity 1024890 "Ignoring number of bytes read". (readraster): Fix Coverity 1024891 "Ignoring number of bytes read". (readgifimage): Fix Coverity 1024892 "Ignoring number of bytes read".
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c9e7658f..d5e684c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -363,7 +363,8 @@ AC_CHECK_TYPES([int8, int16, int32],,,
])
dnl Checks for library functions.
-AC_CHECK_FUNCS([floor isascii memmove memset mmap pow setmode sqrt strchr strrchr strstr strtol strtoull])
+AC_CHECK_FUNCS([floor isascii memmove memset mmap pow setmode sqrt\
+ strchr strrchr strstr strtol strtoull])
dnl Will use local replacements for unavailable functions
AC_REPLACE_FUNCS(getopt)