Browse Source

Fixed a compiler warning

experimental/with_scalar_types
Ilia Alshanetsky 16 years ago
parent
commit
9cad594085
  1. 3
      ext/session/session.c

3
ext/session/session.c

@ -329,9 +329,8 @@ PHPAPI char *php_session_create_id(PS_CREATE_SID_ARGS) /* {{{ */
efree(buf);
if (PS(entropy_length) > 0) {
unsigned char rbuf[2048];
#ifdef PHP_WIN32
unsigned char rbuf[2048];
size_t toread = PS(entropy_length);
if (php_win32_get_random_bytes(rbuf, (size_t) toread) == SUCCESS){

Loading…
Cancel
Save