mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 21:45:04 +00:00
strbuffer_value: Return a read-only pointer rather than duplicating the value
This commit is contained in:
parent
3e0134782b
commit
8c697312e4
3 changed files with 4 additions and 4 deletions
|
@ -222,7 +222,7 @@ char *json_dumps(const json_t *json, uint32_t flags)
|
|||
if(dump_to_strbuffer("\n", 1, (void *)&strbuff))
|
||||
return NULL;
|
||||
|
||||
result = strbuffer_value(&strbuff);
|
||||
result = strdup(strbuffer_value(&strbuff));
|
||||
strbuffer_close(&strbuff);
|
||||
|
||||
return result;
|
||||
|
|
|
@ -20,9 +20,9 @@ void strbuffer_close(strbuffer_t *strbuff)
|
|||
strbuffer_init(strbuff);
|
||||
}
|
||||
|
||||
char *strbuffer_value(strbuffer_t *strbuff)
|
||||
const char *strbuffer_value(strbuffer_t *strbuff)
|
||||
{
|
||||
return strdup(strbuff->value);
|
||||
return strbuff->value;
|
||||
}
|
||||
|
||||
char *strbuffer_steal_value(strbuffer_t *strbuff)
|
||||
|
|
|
@ -10,7 +10,7 @@ typedef struct {
|
|||
void strbuffer_init(strbuffer_t *strbuff);
|
||||
void strbuffer_close(strbuffer_t *strbuff);
|
||||
|
||||
char *strbuffer_value(strbuffer_t *strbuff);
|
||||
const char *strbuffer_value(strbuffer_t *strbuff);
|
||||
char *strbuffer_steal_value(strbuffer_t *strbuff);
|
||||
|
||||
int strbuffer_append(strbuffer_t *strbuff, const char *string);
|
||||
|
|
Loading…
Add table
Reference in a new issue