Better allocation of memory for strings with zero bytes
This commit is contained in:
parent
8d966178f4
commit
3b49ac2c5d
1 changed files with 12 additions and 12 deletions
|
@ -116,8 +116,10 @@ int protobuf_decode_string(const unsigned char* buffer, size_t buffer_length, ch
|
|||
// grab the field size
|
||||
int length = varint_decode(&buffer[pos], buffer_length - pos, bytes_read);
|
||||
pos += *bytes_read;
|
||||
*bytes_read += length;
|
||||
|
||||
// allocate memory
|
||||
// allocate memory (if neccesary)
|
||||
if (length > 0) {
|
||||
*results = malloc(sizeof(char) * length + 1);
|
||||
if ((*results) == NULL)
|
||||
return 0;
|
||||
|
@ -128,9 +130,7 @@ int protobuf_decode_string(const unsigned char* buffer, size_t buffer_length, ch
|
|||
memcpy((*results), &buffer[pos], length);
|
||||
// don't forget the null
|
||||
(*results)[length] = 0;
|
||||
pos += length;
|
||||
*bytes_read = pos;
|
||||
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue