|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-03-08 02:07 UTC] yohgaki@php.net
[2016-03-08 09:31 UTC] ab@php.net
[2016-03-08 11:36 UTC] yohgaki@php.net
[2017-07-22 16:02 UTC] nikic@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: nikic
[2017-07-22 16:02 UTC] nikic@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 16:00:01 2025 UTC |
Description: ------------ mbstring's string is defined as follows mbfl_string.h /* * string object */ typedef struct _mbfl_string { enum mbfl_no_language no_language; enum mbfl_no_encoding no_encoding; unsigned char *val; unsigned int len; } mbfl_string; "unsigned int len" should be extended to "size_t len" to support 2GB> strings.