sync to internal repository

This commit is contained in:
Guenter Obiltschnig
2007-02-23 14:27:57 +00:00
parent 973e256680
commit 7639f5a3f0
742 changed files with 865 additions and 795 deletions

View File

@@ -1,7 +1,7 @@
//
// ASCIIEncoding.cpp
//
// $Id: //poco/1.3/Foundation/src/ASCIIEncoding.cpp#1 $
// $Id: //poco/Main/Foundation/src/ASCIIEncoding.cpp#11 $
//
// Library: Foundation
// Package: Text
@@ -87,7 +87,8 @@ int ASCIIEncoding::convert(int ch, unsigned char* bytes, int length) const
{
if (ch >= 0 && ch <= 127)
{
*bytes = (unsigned char) ch;
if (bytes && length >= 1)
*bytes = (unsigned char) ch;
return 1;
}
else return 0;