liblzma: outqueue: add header guard

Reported by github's codeql.
This commit is contained in:
Sam James 2024-04-15 05:53:01 +01:00 committed by Lasse Collin
parent 55dcae3056
commit c7ef767c49
1 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,9 @@
//
///////////////////////////////////////////////////////////////////////////////
#ifndef LZMA_OUTQUEUE_H
#define LZMA_OUTQUEUE_H
#include "common.h"
@ -251,3 +254,5 @@ lzma_outq_outbuf_memusage(size_t buf_size)
assert(buf_size <= SIZE_MAX - sizeof(lzma_outbuf));
return sizeof(lzma_outbuf) + buf_size;
}
#endif