sources from main repository

This commit is contained in:
Guenter Obiltschnig
2006-12-22 09:31:08 +00:00
parent 15193c3465
commit 772a1021dc
768 changed files with 5910 additions and 840 deletions

View File

@@ -1,7 +1,7 @@
//
// Base64Decoder.cpp
//
// $Id: //poco/1.3/Foundation/src/Base64Decoder.cpp#1 $
// $Id: //poco/Main/Foundation/src/Base64Decoder.cpp#15 $
//
// Library: Foundation
// Package: Streams
@@ -64,7 +64,7 @@ Base64DecoderBuf::Base64DecoderBuf(std::istream& istr):
{
IN_ENCODING[Base64EncoderBuf::OUT_ENCODING[i]] = i;
}
IN_ENCODING['='] = 0;
IN_ENCODING[static_cast<unsigned char>('=')] = '\0';
IN_ENCODING_INIT = true;
}
}