Make WordPress Core

Ticket #10727: 10727.patch

File 10727.patch, 463 bytes (added by hakre, 15 years ago)
  • wp-includes/class-phpass.php

     
    5656        function get_random_bytes($count)
    5757        {
    5858                $output = '';
    59                 if (($fh = @fopen('/dev/urandom', 'rb'))) {
     59                if (is_readable('/dev/urandom') && ($fh = @fopen('/dev/urandom', 'rb'))) {
    6060                        $output = fread($fh, $count);
    6161                        fclose($fh);
    6262                }