Unverified Commit 86624ee4 by Christian Brauner Committed by GitHub

Merge pull request #3746 from evverx/CIFuzz-unblock-msan

CIFuzz: turn on MSan
parents be43adcd f6727edb
......@@ -29,7 +29,7 @@ jobs:
with:
oss-fuzz-project-name: 'lxc'
fuzz-seconds: 180
dry-run: ${{ matrix.sanitizer == 'memory' }}
dry-run: false
sanitizer: ${{ matrix.sanitizer }}
- name: Upload Crash
uses: actions/upload-artifact@v1
......
......@@ -902,7 +902,7 @@ int parse_byte_size_string(const char *s, long long int *converted)
int ret, suffix_len;
long long int conv, mltpl;
char *end;
char dup[INTTYPE_TO_STRLEN(long long int)];
char dup[INTTYPE_TO_STRLEN(long long int)] = {0};
char suffix[3] = {0};
if (is_empty_string(s))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment