View Single Post
Old 05-14-2004, 03:41 AM  
iXi
Senior Member
 
Join Date: Nov 2002
Posts: 220
Default

Quote:
caladan

imdb problems were caused by a change from imdb.com.

to fix that u have 2 options

1st: change the lines urself

2nd: redownlowd p-zs. i included the fix in the rar file on my webserver

------
to fix it yourself open imdb.h and search for folloing lines:

//get all infos
while(1)
{
int i =0;
i=recv(MySocket,buffer,100,0);
if( i ==0 )
{break};


WriteFile(hFile,buffer, i,&nBytesWritten,NULL);
}

change this lines to:

//get all infos
while(1)
{
int i =0;
i=recv(MySocket,buffer,100,0);
if( i ==0 | i < 100)
break;


WriteFile(hFile,buffer, i,&nBytesWritten,NULL);
}


-------


have fun

caladan

maybe usefull for fast fix
iXi is offline   Reply With Quote