1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-29 11:21:54 +03:00

fixed size alignment in talloc

This commit is contained in:
Andrew Tridgell 0001-01-01 00:00:00 +00:00
parent 151b131ee0
commit 064cdb7ee6

View File

@ -56,11 +56,11 @@ void *talloc(TALLOC_CTX *t, size_t size)
{
void *p;
size = (size + TALLOC_ALIGN) & (~TALLOC_ALIGN-1);
size = (size + (TALLOC_ALIGN-1)) & ~(TALLOC_ALIGN-1);
if (!t->list || (t->list->total_size - t->list->alloc_size) < size) {
struct talloc_chunk *c;
size_t asize = (size + TALLOC_CHUNK_SIZE) & ~(TALLOC_CHUNK_SIZE-1);
size_t asize = (size + (TALLOC_CHUNK_SIZE-1)) & ~(TALLOC_CHUNK_SIZE-1);
c = (struct talloc_chunk *)malloc(sizeof(*c));
if (!c) return NULL;