Skip to content
Snippets Groups Projects
Commit ff7d9089 authored by Timo Sirainen's avatar Timo Sirainen
Browse files

global: Remove dead assignments

Found by latest clang scan-build.
parent da702576
No related branches found
No related tags found
No related merge requests found
......@@ -490,9 +490,9 @@ act_report_send(const struct sieve_action_exec_env *aenv,
report_from.type = SIEVE_ADDRESS_SOURCE_DEFAULT;
report_from.address = NULL;
}
if ((ret = sieve_address_source_get_address(
if (sieve_address_source_get_address(
&report_from, svinst, senv, msgctx, eenv->flags,
&sender)) > 0 && sender != NULL)
&sender) > 0 && sender != NULL)
from = smtp_address_encode_path(sender);
else
from = sieve_get_postmaster_address(senv);
......
......@@ -1096,7 +1096,6 @@ static int sieve_message_parts_add_missing
unsigned int idx = 0;
bool save_body = FALSE, have_all;
string_t *hdr_content = NULL;
int ret;
/* First check whether any are missing */
if ( !iter_all && sieve_message_body_get_return_parts
......@@ -1134,8 +1133,7 @@ static int sieve_message_parts_add_missing
// hparser_flags, mparser_flags);
parser = message_parser_init(pool_datastack_create(),
input, hparser_flags, mparser_flags);
while ( (ret=message_parser_parse_next_block
(parser, &block)) > 0 ) {
while ( message_parser_parse_next_block(parser, &block) > 0 ) {
struct sieve_message_part **body_part_idx;
struct message_header_line *hdr = block.hdr;
struct sieve_message_header *header;
......
......@@ -418,7 +418,6 @@ struct sieve_extprogram *sieve_extprogram_create
const char *path = NULL;
struct stat st;
bool fork = FALSE;
int ret;
e_debug(svinst->event, "action %s: "
"running program: %s", action, program_name);
......@@ -437,7 +436,7 @@ struct sieve_extprogram *sieve_extprogram_create
if ( ext_config->socket_dir != NULL ) {
path = t_strconcat(senv->user->set->base_dir, "/",
ext_config->socket_dir, "/", program_name, NULL);
if ( (ret=stat(path, &st)) < 0 ) {
if ( stat(path, &st) < 0 ) {
switch ( errno ) {
case ENOENT:
e_debug(svinst->event, "action %s: "
......@@ -471,7 +470,7 @@ struct sieve_extprogram *sieve_extprogram_create
if ( path == NULL && ext_config->bin_dir != NULL ) {
fork = TRUE;
path = t_strconcat(ext_config->bin_dir, "/", program_name, NULL);
if ( (ret=stat(path, &st)) < 0 ) {
if ( stat(path, &st) < 0 ) {
switch ( errno ) {
case ENOENT:
e_debug(svinst->event, "action %s: "
......
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.