mirror of https://github.com/xzeldon/htop.git
Avoid RichString_beginAllocated being ammendable
This commit is contained in:
parent
0d64ca9262
commit
1c060a9d6b
|
@ -16,7 +16,7 @@ in the source distribution for its full text.
|
||||||
#define RichString_sizeVal(this) ((this).chlen)
|
#define RichString_sizeVal(this) ((this).chlen)
|
||||||
|
|
||||||
#define RichString_begin(this) RichString (this); RichString_beginAllocated(this)
|
#define RichString_begin(this) RichString (this); RichString_beginAllocated(this)
|
||||||
#define RichString_beginAllocated(this) memset(&(this), 0, sizeof(RichString)); (this).chptr = (this).chstr
|
#define RichString_beginAllocated(this) do { memset(&(this), 0, sizeof(RichString)); (this).chptr = (this).chstr; } while(0)
|
||||||
#define RichString_end(this) RichString_prune(&(this))
|
#define RichString_end(this) RichString_prune(&(this))
|
||||||
|
|
||||||
#ifdef HAVE_LIBNCURSESW
|
#ifdef HAVE_LIBNCURSESW
|
||||||
|
|
Loading…
Reference in New Issue