summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLoic Dachary <loic@dachary.org>2014-03-06 17:48:12 +0100
committerLoic Dachary <loic@dachary.org>2014-03-06 17:48:12 +0100
commitcc45e190265171dca5b7a8317906a7ddd730b082 (patch)
tree0978fb9a3776205bfcf527dc673a80f6e6b82b40 /src
parent3c4a451b509cfc3d51f9906326a66ac3e95de9d4 (diff)
downloadgf-complete-cc45e190265171dca5b7a8317906a7ddd730b082.tar.gz
do not use gf_internal_t when it is null
Signed-off-by: Loic Dachary <loic@dachary.org>
Diffstat (limited to 'src')
-rw-r--r--src/gf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gf.c b/src/gf.c
index 5a71ad6..701739b 100644
--- a/src/gf.c
+++ b/src/gf.c
@@ -795,7 +795,7 @@ void gf_set_region_data(gf_region_data *rd,
if (align == -1) { /* JSP: This is cauchy. Error check bytes, then set up the pointers
so that there are no alignment regions. */
- if (bytes % h->w != 0) {
+ if (h != NULL && bytes % h->w != 0) {
fprintf(stderr, "Error in region multiply operation.\n");
fprintf(stderr, "The size must be a multiple of %d bytes.\n", h->w);
exit(1);