Skip to content

Commit 9514abc

Browse files
committed
Cleaner definition for 'TString'
Use a variable-sized array to store string contents at the end of a structure 'TString', instead of raw memory.
1 parent 0be57b9 commit 9514abc

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

lobject.h

+3-4
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ typedef struct GCObject {
356356

357357

358358
/*
359-
** Header for string value; string bytes follow the end of this structure.
359+
** Header for a string value.
360360
*/
361361
typedef struct TString {
362362
CommonHeader;
@@ -367,16 +367,15 @@ typedef struct TString {
367367
size_t lnglen; /* length for long strings */
368368
struct TString *hnext; /* linked list for hash table */
369369
} u;
370+
char contents[1];
370371
} TString;
371372

372373

373374

374375
/*
375376
** Get the actual string (array of bytes) from a 'TString'.
376-
** (Access to 'extra' ensures that value is really a 'TString'.)
377377
*/
378-
#define getstr(ts) \
379-
check_exp(sizeof((ts)->extra), cast_charp((ts)) + sizeof(TString))
378+
#define getstr(ts) ((ts)->contents)
380379

381380

382381
/* get the actual string (array of bytes) from a Lua value */

lstring.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
#define MEMERRMSG "not enough memory"
2020

2121

22-
#define sizelstring(l) (sizeof(TString) + ((l) + 1) * sizeof(char))
22+
/*
23+
** Size of a TString: Size of the header plus space for the string
24+
** itself (including final '\0').
25+
*/
26+
#define sizelstring(l) (offsetof(TString, contents) + ((l) + 1) * sizeof(char))
2327

2428
#define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
2529
(sizeof(s)/sizeof(char))-1))

0 commit comments

Comments
 (0)