suppressed some debugging code

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1393 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2009-07-20 19:28:16 +00:00
parent 13eed1c932
commit f7475887dc

View File

@ -308,6 +308,11 @@ int pqistreamer::queue_outpqi(RsItem *pqi)
// This is called by different threads, and by threads that are not the handleoutgoing thread, // This is called by different threads, and by threads that are not the handleoutgoing thread,
// so it should be protected by a mutex !! // so it should be protected by a mutex !!
if(dynamic_cast<RsFileData*>(pqi)!=NULL && (bio_flags & BIN_FLAGS_NO_DELETE))
{
std::cerr << "Having file data with flags = " << bio_flags << std::endl ;
*(int*)0x0=1 ;
}
{ {
std::ostringstream out; std::ostringstream out;
@ -642,8 +647,7 @@ continue_packet:
{ {
void *extradata = (void *) (((char *) block) + blen); void *extradata = (void *) (((char *) block) + blen);
int tmplen ; int tmplen ;
memset((void*)( &(((unsigned char *)block)[blen])),0,extralen) ; // reset the block, to avoid uninitialized memory reads. // memset((void*)( &(((unsigned char *)block)[blen])),0,extralen) ; // reset the block, to avoid uninitialized memory reads.
memset( extradata,0,extralen ) ; // for checking later memset( extradata,0,extralen ) ; // for checking later
if (extralen != (tmplen = bio->readdata(extradata, extralen))) if (extralen != (tmplen = bio->readdata(extradata, extralen)))
@ -720,13 +724,13 @@ continue_packet:
uint32_t pktlen = blen+extralen ; uint32_t pktlen = blen+extralen ;
// std::cerr << "deserializing. Size=" << pktlen << std::endl ; // std::cerr << "deserializing. Size=" << pktlen << std::endl ;
if(pktlen == 17306) // if(pktlen == 17306)
{ // {
FILE *f = fopen("dbug.packet.bin","w"); // FILE *f = fopen("dbug.packet.bin","w");
fwrite(block,pktlen,1,f) ; // fwrite(block,pktlen,1,f) ;
fclose(f) ; // fclose(f) ;
exit(-1) ; // exit(-1) ;
} // }
RsItem *pkt = rsSerialiser->deserialise(block, &pktlen); RsItem *pkt = rsSerialiser->deserialise(block, &pktlen);
if ((pkt != NULL) && (0 < handleincomingitem(pkt))) if ((pkt != NULL) && (0 < handleincomingitem(pkt)))