]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Relax alignment requirements for fstring
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 1 Jan 2017 15:08:32 +0000 (15:08 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 1 Jan 2017 15:48:48 +0000 (15:48 +0000)
src/libutil/fstring.c

index 25eda60e72bfd04717427be1680b48acc03a8643..88beaf570cc40eccb56a48c32835b8514aeafaab 100644 (file)
@@ -25,7 +25,7 @@ rspamd_fstring_new (void)
 {
        rspamd_fstring_t *s;
 
-       if (posix_memalign ((void**)&s, 16, default_initial_size + sizeof (*s)) != 0) {
+       if ((s = malloc (default_initial_size + sizeof (*s))) != 0) {
                g_error ("%s: failed to allocate %"G_GSIZE_FORMAT" bytes",
                                G_STRLOC, default_initial_size + sizeof (*s));
 
@@ -44,7 +44,7 @@ rspamd_fstring_sized_new (gsize initial_size)
        rspamd_fstring_t *s;
        gsize real_size = MAX (default_initial_size, initial_size);
 
-       if (posix_memalign ((void **)&s, 16, real_size + sizeof (*s)) != 0) {
+       if ((s = malloc (real_size + sizeof (*s))) != 0) {
                g_error ("%s: failed to allocate %"G_GSIZE_FORMAT" bytes",
                                G_STRLOC, real_size + sizeof (*s));
 
@@ -62,7 +62,7 @@ rspamd_fstring_new_init (const gchar *init, gsize len)
        rspamd_fstring_t *s;
        gsize real_size = MAX (default_initial_size, len);
 
-       if (posix_memalign ((void **) &s, 16, real_size + sizeof (*s)) != 0) {
+       if ((s = malloc (real_size + sizeof (*s))) != 0) {
                g_error ("%s: failed to allocate %"G_GSIZE_FORMAT" bytes",
                                G_STRLOC, real_size + sizeof (*s));