Skip to content

Commit

Permalink
dunno what's this, but it only produces warnings, so remove it
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pecl/rar/trunk@161401 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
tony2001 committed Jun 15, 2004
1 parent c594c7a commit 9447de1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
6 changes: 0 additions & 6 deletions unrar/rdwrfn.cpp
Expand Up @@ -118,13 +118,7 @@ void ComprDataIO::UnpWrite(byte *Addr,uint Count)
ErrHandler.Exit(RAR_USER_BREAK);
if (Cmd->ProcessDataProc!=NULL)
{
#ifdef _WIN_32
_EBX=_ESP;
#endif
int RetCode=Cmd->ProcessDataProc(Addr,Count);
#ifdef _WIN_32
_ESP=_EBX;
#endif
if (RetCode==0)
ErrHandler.Exit(RAR_USER_BREAK);
}
Expand Down
12 changes: 0 additions & 12 deletions unrar/volume.cpp
Expand Up @@ -56,13 +56,7 @@ bool MergeArchive(Archive &Arc,ComprDataIO *DataIO,bool ShowFileName,char Comman
}
if (Cmd->ChangeVolProc!=NULL)
{
#ifdef _WIN_32
_EBX=_ESP;
#endif
int RetCode=Cmd->ChangeVolProc(NextName,RAR_VOL_ASK);
#ifdef _WIN_32
_ESP=_EBX;
#endif
if (RetCode==0)
{
Cmd->DllError=ERAR_EOPEN;
Expand Down Expand Up @@ -112,13 +106,7 @@ bool MergeArchive(Archive &Arc,ComprDataIO *DataIO,bool ShowFileName,char Comman
return(false);
if (Cmd->ChangeVolProc!=NULL)
{
#ifdef _WIN_32
_EBX=_ESP;
#endif
int RetCode=Cmd->ChangeVolProc(NextName,RAR_VOL_NOTIFY);
#ifdef _WIN_32
_ESP=_EBX;
#endif
if (RetCode==0)
return(false);
}
Expand Down

0 comments on commit 9447de1

Please sign in to comment.