diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-07-30 20:08:24 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-07-30 20:08:24 +0000 |
commit | 745a9ec043fdbe91faf26a3cfec4ecd12355f94a (patch) | |
tree | 9fb5a4c3223050ac0ea938163438a82dd44c50af /src/base64.h | |
parent | 3f0f30442de297859cccc18f28db83b4e755d36f (diff) | |
download | libbu++-745a9ec043fdbe91faf26a3cfec4ecd12355f94a.tar.gz libbu++-745a9ec043fdbe91faf26a3cfec4ecd12355f94a.tar.bz2 libbu++-745a9ec043fdbe91faf26a3cfec4ecd12355f94a.tar.xz libbu++-745a9ec043fdbe91faf26a3cfec4ecd12355f94a.zip |
I think I fixed a bug in Bu::Base64, we'll see what happens.
Diffstat (limited to 'src/base64.h')
-rw-r--r-- | src/base64.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/base64.h b/src/base64.h index 41264e0..c7fb737 100644 --- a/src/base64.h +++ b/src/base64.h | |||
@@ -25,6 +25,9 @@ namespace Bu | |||
25 | private: | 25 | private: |
26 | int iBPos; | 26 | int iBPos; |
27 | int iBuf; | 27 | int iBuf; |
28 | int iRPos; | ||
29 | int iChars; | ||
30 | bool bEosIn; | ||
28 | size_t iTotalIn; | 31 | size_t iTotalIn; |
29 | size_t iTotalOut; | 32 | size_t iTotalOut; |
30 | static const char tblEnc[65]; | 33 | static const char tblEnc[65]; |