1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 16:37:45 +00:00

Removed unneeded string

This commit is contained in:
Mordred 2017-09-20 18:27:00 +02:00
parent fc60c7cec9
commit 676de51fb3

View file

@ -280,7 +280,6 @@ std::vector< char > Core::Db::ResultSet::getBlobVector( uint32_t columnIndex ) c
boost::scoped_ptr< std::istream > inStr( getBlob( columnIndex ) ); boost::scoped_ptr< std::istream > inStr( getBlob( columnIndex ) );
char buff[4196]; char buff[4196];
std::string s;
std::vector< char > data; std::vector< char > data;
inStr->read( buff, sizeof( buff ) ); inStr->read( buff, sizeof( buff ) );
if( inStr->gcount() ) if( inStr->gcount() )