diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-10-27 14:24:10 -0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-27 12:42:54 -0700 |
commit | a9b1fbdcc5aba16cb5b5d3acdbbe2b4e48768e1c (patch) | |
tree | fd8a32ac646d356c363b0cdc0390e6e7a48441eb /core/membuffer.c | |
parent | d401271dab8d114c74d7d9ceb1ac39290b1a80d8 (diff) | |
download | subsurface-a9b1fbdcc5aba16cb5b5d3acdbbe2b4e48768e1c.tar.gz |
Don't expose 'detach_buffer()' to membuffer users
The native buffer of a membuffer is not NUL-terminated, so when you want
to detach it and use it as a C string, you had to first do
'mb_cstring()' that adds the proper termination/
This was all documented in the header files, and all but two users did
it correctly.
But there were those two users, and the exported interface was
unnecessarily hard to use. We do want the "just detach the raw buffer"
internally in the membuffer code, but let's not make the exported
interface be that hard to use.
So this switches the exported interface to be 'detach_cstring()', which
does that 'mb_cstring()' for you, and avoids the possibility that you'd
use a non-terminated memory buffer as a C string.
The old 'detach_buffer()' is now purely the internal membuffer
implementation, and not used by others.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'core/membuffer.c')
-rw-r--r-- | core/membuffer.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/core/membuffer.c b/core/membuffer.c index 548b70d45..8efb04c9e 100644 --- a/core/membuffer.c +++ b/core/membuffer.c @@ -12,7 +12,8 @@ #include "dive.h" #include "membuffer.h" -char *detach_buffer(struct membuffer *b) +/* Only for internal use */ +static char *detach_buffer(struct membuffer *b) { char *result = b->buffer; b->buffer = NULL; @@ -21,6 +22,12 @@ char *detach_buffer(struct membuffer *b) return result; } +char *detach_cstring(struct membuffer *b) +{ + mb_cstring(b); + return detach_buffer(b); +} + void free_buffer(struct membuffer *b) { free(detach_buffer(b)); @@ -117,8 +124,7 @@ char *vformat_string(const char *fmt, va_list args) { struct membuffer mb = { 0 }; put_vformat(&mb, fmt, args); - mb_cstring(&mb); - return detach_buffer(&mb); + return detach_cstring(&mb); } char *format_string(const char *fmt, ...) |