-fix memory leak
This commit is contained in:
parent
eb2b4a131b
commit
07a089f4f1
@ -390,7 +390,7 @@ FROM exists;
|
|||||||
RETURN;
|
RETURN;
|
||||||
END $$;
|
END $$;
|
||||||
|
|
||||||
/*** THIS SQL CODE WORKS ***/
|
/*** Experiment using a loop ***/
|
||||||
/*
|
/*
|
||||||
CREATE OR REPLACE FUNCTION exchange_do_batch2_known_coin(
|
CREATE OR REPLACE FUNCTION exchange_do_batch2_known_coin(
|
||||||
IN in_coin_pub1 BYTEA,
|
IN in_coin_pub1 BYTEA,
|
||||||
|
@ -362,10 +362,16 @@ TALER_AUDITOR_deposit_confirmation (
|
|||||||
dh->ctx.headers,
|
dh->ctx.headers,
|
||||||
&handle_deposit_confirmation_finished,
|
&handle_deposit_confirmation_finished,
|
||||||
dh);
|
dh);
|
||||||
/* Disable 100 continue processing */
|
{
|
||||||
GNUNET_CURL_extend_headers (dh->job,
|
/* Disable 100 continue processing */
|
||||||
curl_slist_append (NULL,
|
struct curl_slist *x_headers;
|
||||||
"Expect:"));
|
|
||||||
|
x_headers = curl_slist_append (NULL,
|
||||||
|
"Expect:");
|
||||||
|
GNUNET_CURL_extend_headers (dh->job,
|
||||||
|
x_headers);
|
||||||
|
curl_slist_free_all (x_headers);
|
||||||
|
}
|
||||||
return dh;
|
return dh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user