1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-12-22 12:23:56 +01:00

Uninitialized value

This commit is contained in:
Anthony Scemama 2023-01-26 18:45:09 +01:00
parent 6da1b73442
commit aecf0215fb

View File

@ -7260,7 +7260,7 @@ qmckl_exit_code qmckl_provide_tmp_c(qmckl_context context)
qmckl_context_struct* const ctx = (qmckl_context_struct*) context; qmckl_context_struct* const ctx = (qmckl_context_struct*) context;
assert (ctx != NULL); assert (ctx != NULL);
qmckl_exit_code rc; qmckl_exit_code rc = QMCKL_SUCCESS;
/* Compute if necessary */ /* Compute if necessary */
if (ctx->date > ctx->jastrow.tmp_c_date) { if (ctx->date > ctx->jastrow.tmp_c_date) {