summaryrefslogtreecommitdiff
path: root/poppler/Decrypt.h
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2013-01-25 19:37:24 +0100
committerAlbert Astals Cid <aacid@kde.org>2013-01-25 19:37:24 +0100
commit1bb3ddc2264cb65dffd553a952ee4518344df0de (patch)
tree7d54d66507b2e05bf2042a0ebe04451f8d63f8ca /poppler/Decrypt.h
parent5f8b1275a19b2036c6e9323a744d8bc64af31c36 (diff)
A few Goffsets we missed
charactersRead is returned in BaseCryptStream::getPos thus should be a Goffset Gfx::getPos returns Parser::getPos and thus should be a Goffset too
Diffstat (limited to 'poppler/Decrypt.h')
-rw-r--r--poppler/Decrypt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/poppler/Decrypt.h b/poppler/Decrypt.h
index 1a5247af..ac786b94 100644
--- a/poppler/Decrypt.h
+++ b/poppler/Decrypt.h
@@ -17,6 +17,7 @@
// Copyright (C) 2009 David Benjamin <davidben@mit.edu>
// Copyright (C) 2012 Fabio D'Urso <fabiodurso@hotmail.it>
// Copyright (C) 2013 Adrian Johnson <ajohnson@redneon.com>
+// Copyright (C) 2013 Albert Astals Cid <aacid@kde.org>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
@@ -117,7 +118,7 @@ protected:
CryptAlgorithm algo;
int objKeyLength;
Guchar objKey[32];
- int charactersRead; // so that getPos() can be correct
+ Goffset charactersRead; // so that getPos() can be correct
int nextCharBuff; // EOF means not read yet
GBool autoDelete;