line[strlen(line) - 1] = '\0';
SCLogDebug("line: '%s'", line);
+ // coverity[alloc_strlen : FALSE]
uint8_t decoded[strlen(line)];
uint32_t len = DecodeBase64(decoded, (const uint8_t *)line, strlen(line), 1);
if (len == 0)
*r = '\0';
+ // coverity[alloc_strlen : FALSE]
uint8_t decoded[strlen(line)];
uint32_t len = DecodeBase64(decoded, (const uint8_t *)line, strlen(line), 1);
if (len == 0)
switch (set->type) {
case DATASET_TYPE_STRING: {
+ // coverity[alloc_strlen : FALSE]
uint8_t decoded[strlen(string)];
uint32_t len = DecodeBase64(decoded, (const uint8_t *)string, strlen(string), 1);
if (len == 0) {
switch (set->type) {
case DATASET_TYPE_STRING: {
+ // coverity[alloc_strlen : FALSE]
uint8_t decoded[strlen(string)];
uint32_t len = DecodeBase64(decoded, (const uint8_t *)string, strlen(string), 1);
if (len == 0) {