Use unsigned short for length of embedded strings

This commit is contained in:
Peter Zhu 2022-01-07 15:11:25 -05:00
Родитель d9ef711f29
Коммит bc643bbe2e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -280,7 +280,7 @@ struct RString {
/** Embedded contents. */
struct {
#if USE_RVARGC
short len;
unsigned short len;
/* This is a length 1 array because:
* 1. GCC has a bug that does not optimize C flexible array members
* (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102452)