bug 758972 - make spdysession::verifystream() a DEBUG only operation r=honzab

--HG--
extra : rebase_source : 157618d22a7fbcde1764125d50745552eddd6da6
This commit is contained in:
Patrick McManus 2012-07-20 08:44:21 -04:00
Родитель 3473b4bc15
Коммит 0f8d44fe13
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -846,6 +846,11 @@ SpdySession2::VerifyStream(SpdyStream2 *aStream, PRUint32 aOptionalID = 0)
// This is annoying, but at least it is O(1)
NS_ABORT_IF_FALSE(PR_GetCurrentThread() == gSocketThread, "wrong thread");
#ifndef DEBUG
// Only do the real verification in debug builds
return true;
#endif
if (!aStream)
return true;

Просмотреть файл

@ -701,6 +701,11 @@ SpdySession3::VerifyStream(SpdyStream3 *aStream, PRUint32 aOptionalID = 0)
// This is annoying, but at least it is O(1)
NS_ABORT_IF_FALSE(PR_GetCurrentThread() == gSocketThread, "wrong thread");
#ifndef DEBUG
// Only do the real verification in debug builds
return true;
#endif
if (!aStream)
return true;