Skip to content
Snippets Groups Projects
Commit c0e64243 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Started using new str_new_const() function.

parent e6995fc0
No related branches found
No related tags found
No related merge requests found
Sieve implementation for Dovecot (1.1)
Sieve implementation for Dovecot (1.2)
################################################################################
!! WARNING !!
......
Next (in order of descending priority/precedence):
* Review sieve-address parsing implementation for past-end checks
* Improve handling of old/corrupt binaries.
* Move to 1.2 and start using and new const str.
* Resolve problems in variables extension: scope uses hash the wrong way and
extension ids are emitted directly.
......
AC_INIT([dovecot-sieve], [0.0.0], [dovecot@dovecot.org], [dovecot-1.1-sieve])
AC_INIT([dovecot-sieve], [0.0.0], [dovecot@dovecot.org], [dovecot-1.2-sieve])
AC_CONFIG_SRCDIR([src])
AC_CONFIG_HEADERS([dsieve-config.h])
......
......@@ -1622,15 +1622,10 @@ bool sieve_binary_read_integer
return TRUE;
}
/* FIXME: add this to lib/str. (now commented out) */
static string_t *t_str_const(const void *cdata, size_t size)
/* FIXME: add this to lib/str. */
static string_t *t_str_new_const(const char *str, size_t len)
{
string_t *result = t_str_new(size);
str_append_n(result, cdata, size);
return result;
//return buffer_create_const_data(pool_datastack_create(), cdata, size);
return str_new_const(pool_datastack_create(), str, len);
}
bool sieve_binary_read_string
......@@ -1645,7 +1640,7 @@ bool sieve_binary_read_string
return FALSE;
if ( str != NULL )
*str = t_str_const(&ADDR_CODE_AT(binary, address), strlen);
*str = t_str_new_const(&ADDR_CODE_AT(binary, address), strlen);
ADDR_JUMP(address, strlen);
if ( ADDR_CODE_AT(binary, address) != 0 )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.