forked from Mirrors/freeswitch
FS-11896: [core] Fix typo in esl_buffer
This commit is contained in:
parent
ff21989218
commit
5daa48953d
|
@ -62,8 +62,8 @@ ESL_DECLARE(esl_status_t) esl_buffer_create(esl_buffer_t **buffer, esl_size_t bl
|
|||
start_len = 250;
|
||||
}
|
||||
|
||||
if (!block_size) {
|
||||
block_size = start_len;
|
||||
if (!blocksize) {
|
||||
blocksize = start_len;
|
||||
}
|
||||
|
||||
new_buffer->data = malloc(start_len);
|
||||
|
|
Loading…
Reference in New Issue