fixed _SECURE_SCL issue with msvc8

This commit is contained in:
Arvid Norberg 2007-07-17 01:29:58 +00:00
parent 32f1dbf7a6
commit 5ae2e83af6
1 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ namespace libtorrent
#ifndef TORRENT_DISABLE_ENCRYPTION
buffer::interval wr_recv_buffer()
{
#ifndef NDEBUG
#if defined _SECURE_SCL && _SECURE_SCL > 0
if (m_recv_buffer.empty()) return buffer::interval(0,0);
#endif
return buffer::interval(&m_recv_buffer[0]
@ -405,7 +405,7 @@ namespace libtorrent
buffer::const_interval receive_buffer() const
{
#ifndef NDEBUG
#if defined _SECURE_SCL && _SECURE_SCL > 0
if (m_recv_buffer.empty()) return buffer::const_interval(0,0);
#endif
return buffer::const_interval(&m_recv_buffer[0]