diff options
author | tailor <cygnus@janrain.com> | 2007-09-19 20:25:01 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-09-19 20:25:01 +0000 |
commit | b2a4bc6d27bef230141b0b61cf04687c9fb3981f (patch) | |
tree | 0179cb5ecf903ef107489277fc1fc21c6e2a578e | |
parent | 711756348c34631b35b75746677834e014325b84 (diff) | |
download | php-openid-b2a4bc6d27bef230141b0b61cf04687c9fb3981f.zip php-openid-b2a4bc6d27bef230141b0b61cf04687c9fb3981f.tar.gz php-openid-b2a4bc6d27bef230141b0b61cf04687c9fb3981f.tar.bz2 |
[project @ Fix NULL return reference in math library wrapper function]
-rw-r--r-- | Auth/OpenID/BigMath.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Auth/OpenID/BigMath.php b/Auth/OpenID/BigMath.php index cfa0b35..40de144 100644 --- a/Auth/OpenID/BigMath.php +++ b/Auth/OpenID/BigMath.php @@ -444,7 +444,9 @@ function &Auth_OpenID_getMathLib() $triedstr = implode(", ", $tried); define('Auth_OpenID_NO_MATH_SUPPORT', true); - return null; + + $result = null; + return $result; } // Instantiate a new wrapper |