-fix NPE
This commit is contained in:
parent
a400aa0fc1
commit
e82cbd05b6
@ -1775,13 +1775,16 @@ conclude_account (struct WireAccount *wa)
|
|||||||
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
||||||
"Reconciling CREDIT processing of account `%s'\n",
|
"Reconciling CREDIT processing of account `%s'\n",
|
||||||
wa->ai->section_name);
|
wa->ai->section_name);
|
||||||
GNUNET_CONTAINER_multihashmap_iterate (in_map,
|
if (NULL != in_map)
|
||||||
&complain_in_not_found,
|
{
|
||||||
wa);
|
GNUNET_CONTAINER_multihashmap_iterate (in_map,
|
||||||
/* clean up before 2nd phase */
|
&complain_in_not_found,
|
||||||
GNUNET_CONTAINER_multihashmap_iterate (in_map,
|
wa);
|
||||||
&free_rii,
|
/* clean up before 2nd phase */
|
||||||
NULL);
|
GNUNET_CONTAINER_multihashmap_iterate (in_map,
|
||||||
|
&free_rii,
|
||||||
|
NULL);
|
||||||
|
}
|
||||||
process_credits (wa->next);
|
process_credits (wa->next);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user