Index: third_party/lcms2-2.6/0009-cmsStageAllocMatrix-param-swap.patch |
diff --git a/third_party/lcms2-2.6/0009-cmsStageAllocMatrix-param-swap.patch b/third_party/lcms2-2.6/0009-cmsStageAllocMatrix-param-swap.patch |
new file mode 100644 |
index 0000000000000000000000000000000000000000..26db3dd2235c857e4f9fc8b147d47f0337e734f9 |
--- /dev/null |
+++ b/third_party/lcms2-2.6/0009-cmsStageAllocMatrix-param-swap.patch |
@@ -0,0 +1,20 @@ |
+diff --git a/third_party/lcms2-2.6/src/cmslut.c b/third_party/lcms2-2.6/src/cmslut.c |
+index 73e6726..9b0eb4b 100644 |
+--- a/third_party/lcms2-2.6/src/cmslut.c |
++++ b/third_party/lcms2-2.6/src/cmslut.c |
+@@ -414,13 +414,13 @@ cmsStage* CMSEXPORT cmsStageAllocMatrix(cmsContext ContextID, cmsUInt32Number R |
+ |
+ if (Offset != NULL) { |
+ |
+- NewElem ->Offset = (cmsFloat64Number*) _cmsCalloc(ContextID, Cols, sizeof(cmsFloat64Number)); |
++ NewElem ->Offset = (cmsFloat64Number*) _cmsCalloc(ContextID, Rows, sizeof(cmsFloat64Number)); |
+ if (NewElem->Offset == NULL) { |
+ MatrixElemTypeFree(NewMPE); |
+ return NULL; |
+ } |
+ |
+- for (i=0; i < Cols; i++) { |
++ for (i=0; i < Rows; i++) { |
+ NewElem ->Offset[i] = Offset[i]; |
+ } |
+ |