summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--poppler/Function.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/poppler/Function.cc b/poppler/Function.cc
index ea35b7b8..e7383fd1 100644
--- a/poppler/Function.cc
+++ b/poppler/Function.cc
@@ -425,7 +425,7 @@ void SampledFunction::transform(double *in, double *out) {
if (likely(idx >= 0 && idx < nSamples)) {
sBuf[j] = samples[idx];
} else {
- sBuf[j] = 0;
+ sBuf[j] = 0; // TODO Investigate if this is what Adobe does
}
}