Check-in Number:
|
5398 | |
Date: |
2006-May-11 19:44:42 (local)
2006-May-11 17:44:42 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fix PHP bindings: the wrong argument to uuid_create()
was forced to a reference
Submitted by: Roman Neuhauser <neuhauser@sigpipe.cz> |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.116 -> 1.117
--- ChangeLog 2006/05/11 09:37:27 1.116
+++ ChangeLog 2006/05/11 17:44:42 1.117
@@ -13,6 +13,10 @@
Changes between 1.4.2 and 1.5.0 (13-Mar-2006 to XX-May-2006)
+ o Fix PHP bindings: the wrong argument to uuid_create()
+ was forced to a reference
+ [Roman Neuhauser <neuhauser@sigpipe.cz>]
+
o Add full support for Single Integer Value (SIV) UUID representation
for both importing and exporting in C/C++/Perl/PHP APIs.
[Ralf S. Engelschall]
|
|
ossp-pkg/uuid/THANKS 1.8 -> 1.9
--- THANKS 2005/12/06 07:38:49 1.8
+++ THANKS 2006/05/11 17:44:42 1.9
@@ -15,6 +15,7 @@
o M. Daniel <mdaniel@scdi.com>
o Fuyuki <fuyuki@nigredo.org>
o Thomas Lotterer <thomas@lotterer.net>
+ o Roman Neuhauser <neuhauser@sigpipe.cz>
o Piotr Roszatycki <dexter@debian.org>
o Michael Schloh <michael@schloh.com>
o Guerry Semones <guerry@tsunamiresearch.com>
|
|
ossp-pkg/uuid/php/uuid.c 1.6 -> 1.7
--- uuid.c 2006/05/11 09:37:30 1.6
+++ uuid.c 2006/05/11 17:44:43 1.7
@@ -493,7 +493,7 @@
/* module function table */
static function_entry uuid_functions[] = {
- PHP_FE(uuid_create, third_arg_force_ref)
+ PHP_FE(uuid_create, first_arg_force_ref)
PHP_FE(uuid_destroy, NULL)
PHP_FE(uuid_clone, NULL)
PHP_FE(uuid_load, NULL)
|
|