object: string: fix b_string_steal resetting capacity to wrong value

This commit is contained in:
2024-11-17 09:22:39 +00:00
parent e37d6bb3b3
commit 2531f00b81
2 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ struct b_string {
unsigned int s_max;
union {
char d_inline[STRING_INLINE_CAPACITY + 1];
char *d_BLUE_APIal;
char *d_external;
} s_data;
};