mirror of https://github.com/ecmwf/eccodes.git
Clang static analyser warnings
This commit is contained in:
parent
c190be37de
commit
514e84ab75
|
@ -721,8 +721,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len)
|
|||
for (i = 1; i < maxv; i++)
|
||||
scals[i] = ((double)pow(i * (i + 1), laplacianOperator));
|
||||
|
||||
i = 0;
|
||||
|
||||
mmax = 0;
|
||||
maxv = pen_j + 1;
|
||||
i = 0;
|
||||
|
|
|
@ -377,7 +377,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len)
|
|||
for (hcount = 0; hcount < sub_k + 1; hcount++) {
|
||||
dummy = decode_float(grib_decode_unsigned_long(hres, &hpos, 8 * bytes));
|
||||
dummy = decode_float(grib_decode_unsigned_long(hres, &hpos, 8 * bytes));
|
||||
|
||||
(void)dummy;
|
||||
lup++;
|
||||
}
|
||||
sub_k--;
|
||||
|
@ -406,8 +406,6 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len)
|
|||
Assert(*len >= i);
|
||||
*len = n_vals;
|
||||
|
||||
|
||||
(void)dummy; /* suppress gcc warning */
|
||||
grib_context_free(a->context, scals);
|
||||
|
||||
return ret;
|
||||
|
|
|
@ -370,14 +370,9 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len)
|
|||
|
||||
/* pscals=scals+lup; */
|
||||
for (lcount = hcount; lcount < maxv; lcount++) {
|
||||
dummy = d * (double)((grib_decode_unsigned_long(lres, &lpos,
|
||||
bits_per_value) *
|
||||
s) +
|
||||
reference_value);
|
||||
dummy = d * (double)((grib_decode_unsigned_long(lres, &lpos,
|
||||
bits_per_value) *
|
||||
s) +
|
||||
reference_value);
|
||||
dummy = d * (double)((grib_decode_unsigned_long(lres, &lpos, bits_per_value) * s) + reference_value);
|
||||
dummy = d * (double)((grib_decode_unsigned_long(lres, &lpos, bits_per_value) * s) + reference_value);
|
||||
(void)dummy; /* suppress gcc warning */
|
||||
lup++;
|
||||
}
|
||||
|
||||
|
@ -389,8 +384,6 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len)
|
|||
Assert(*len >= i);
|
||||
*len = n_vals;
|
||||
|
||||
|
||||
(void)dummy; /* suppress gcc warning */
|
||||
grib_context_free(a->context, scals);
|
||||
|
||||
return ret;
|
||||
|
|
|
@ -257,7 +257,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len)
|
|||
|
||||
switch (type_first) {
|
||||
case 100: /* Pa */
|
||||
scale_first = 0;
|
||||
if (!strcmp(pressure_units, "hPa"))
|
||||
value_first *= 100;
|
||||
break;
|
||||
|
|
|
@ -226,8 +226,7 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len)
|
|||
unsigned long i = 0;
|
||||
long rlen = 0;
|
||||
ret = value_count(a, &rlen);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (ret) return ret;
|
||||
|
||||
/*
|
||||
if(*len < rlen)
|
||||
|
@ -239,10 +238,10 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len)
|
|||
*/
|
||||
if (*len != rlen)
|
||||
ret = grib_set_long(grib_handle_of_accessor(a), self->numberOfElements, *len);
|
||||
if (ret) return ret;
|
||||
|
||||
ret = grib_get_long(grib_handle_of_accessor(a), self->numberOfBits, &numberOfBits);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (ret) return ret;
|
||||
if (numberOfBits == 0) {
|
||||
grib_buffer_replace(a, NULL, 0, 1, 1);
|
||||
return GRIB_SUCCESS;
|
||||
|
|
|
@ -525,7 +525,6 @@ static grib_accessor* _grib_find_accessor(const grib_handle* ch, const char* nam
|
|||
char name_space[MAX_NAMESPACE_LEN];
|
||||
char* basename = p + 1;
|
||||
p--;
|
||||
i = 0;
|
||||
len = p - name + 1;
|
||||
|
||||
for (i = 0; i < len; i++)
|
||||
|
|
|
@ -89,7 +89,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
|
|||
if (values)
|
||||
free(values);
|
||||
values = (double*)malloc(size * sizeof(double));
|
||||
last_size = size;
|
||||
/*last_size = size;*/
|
||||
if (!values) {
|
||||
fprintf(stderr, "Failed to allocate memory for values (%lu bytes)\n", size * sizeof(double));
|
||||
exit(1);
|
||||
|
|
Loading…
Reference in New Issue