> In the HTTrack-Source is the following part (InfoUrl.cpp):
> lien_back* backitem=&back[id];
> if (lien_back) {
> ...
> }
> For this part I get the error:
Argh!! This is a bug!!
This line sould be:
if (backitem) {
The VC.net compiler seems to be a bit less dumb than VC.6,
apparently :)
|