From 0a3fb74248f2ca1e2e4de886210fb88f17fc95ad Mon Sep 17 00:00:00 2001 From: dsandersoremutah Date: Tue, 20 Jun 2006 18:30:51 +0000 Subject: [PATCH] Base 64 decoder should have returned success instead of eof hit. git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@591 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- ftk/src/ftkstrm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ftk/src/ftkstrm.cpp b/ftk/src/ftkstrm.cpp index 343d019..42215f1 100644 --- a/ftk/src/ftkstrm.cpp +++ b/ftk/src/ftkstrm.cpp @@ -1852,6 +1852,7 @@ RCODE FLMAPI F_Base64DecoderIStream::read( { rc = RC_SET( NE_FLM_BAD_BASE64_ENCODING); } + rc = NE_FLM_OK; goto Exit; }