php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #37863 The instruction at "0x100c5fca" referenced...The memory could not be read.
Submitted: 2006-06-20 18:23 UTC Modified: 2006-06-20 19:07 UTC
From: mpowell1221 at gmail dot com Assigned:
Status: Not a bug Package: *General Issues
PHP Version: 4.4.2 OS: Windows XP Pro
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: mpowell1221 at gmail dot com
New email:
PHP Version: OS:

 

 [2006-06-20 18:23 UTC] mpowell1221 at gmail dot com
Description:
------------
My code crashes PHP.exe when ran. I am running windows XP Pro with IIS 5.1, PHP is 4.4.2, and I am also running MySQL.

The bug occurs when ever I run a fopen function. 

Reproduce code:
---------------
<?php
//referring URL should send a query like this....http://localhost/Link%20Checker/linkchecker.php?list=http://google.com/|http://localhost/Link%20Checker/linker.html&rand=478046104884318


$list=$_GET['list'];

$link = explode("|",$list);        // put URLs into an array
$badcount = 0;
$out = "Link Check For: ".$_SERVER['HTTP_REFERER']
              ."\n\n".date("F j, Y, g:i a")."\n\n";



foreach($link as $url)
{
  $fp = @fopen($url, "r");
  if (!$fp) 
  { 
    $out .= "Link $url is dead!\n"; 
    $badcount++;
  }
}


echo $url;


?>

Expected result:
----------------
List of links that are broken, or do not open.

Actual result:
--------------
Message Box that says "The instruction at '0x100c%fca' refererenced memory at '0x0000001e'. The memory could not be 'read'".



The page also returns this

CGI Timeout
The specified CGI application exceeded the allowed time for processing. The server has deleted the process.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-06-20 18:26 UTC] tony2001@php.net
Fixed in CVS several months ago.
 [2006-06-20 19:07 UTC] mpowell1221 at gmail dot com
What is the CVS?
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Aug 26 05:00:02 2025 UTC