summaryrefslogtreecommitdiff
path: root/src/cmsxform.c
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2022-09-01 21:00:49 +0200
committerMarti Maria <marti.maria@littlecms.com>2022-09-01 21:00:49 +0200
commitad121a18594e496d0b76328d08403ea0bd304183 (patch)
treebbbd2adc28aa5651a804123f249dd917a9210e85 /src/cmsxform.c
parent991713e8456e62de82793e0594997fe997045431 (diff)
downloadlcms2-ad121a18594e496d0b76328d08403ea0bd304183.tar.gz
Add more protection against attacks
More code to filter bad API use
Diffstat (limited to 'src/cmsxform.c')
-rw-r--r--src/cmsxform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmsxform.c b/src/cmsxform.c
index 0b709b5..38ea624 100644
--- a/src/cmsxform.c
+++ b/src/cmsxform.c
@@ -960,7 +960,7 @@ _cmsTRANSFORM* AllocEmptyTransform(cmsContext ContextID, cmsPipeline* lut,
return NULL;
}
- BytesPerPixelInput = T_BYTES(p ->InputFormat);
+ BytesPerPixelInput = T_BYTES(*InputFormat);
if (BytesPerPixelInput == 0 || BytesPerPixelInput >= 2)
*dwFlags |= cmsFLAGS_CAN_CHANGE_FORMATTER;