mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Avoid variable-length arrays in the debug programs.
This commit is contained in:
parent
72f7307cfd
commit
3e8bd1d15e
2 changed files with 4 additions and 2 deletions
|
@ -14,6 +14,8 @@
|
|||
#include "lzma.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#define CHUNK 64
|
||||
|
||||
|
||||
static lzma_stream strm = LZMA_STREAM_INIT;
|
||||
static FILE *file_in;
|
||||
|
@ -22,7 +24,6 @@ static FILE *file_in;
|
|||
static void
|
||||
encode(size_t size, lzma_action action)
|
||||
{
|
||||
static const size_t CHUNK = 64;
|
||||
uint8_t in[CHUNK];
|
||||
uint8_t out[CHUNK];
|
||||
lzma_ret ret;
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
#include "lzma.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#define CHUNK 64
|
||||
|
||||
|
||||
static lzma_stream strm = LZMA_STREAM_INIT;
|
||||
static FILE *file_in;
|
||||
|
@ -22,7 +24,6 @@ static FILE *file_in;
|
|||
static void
|
||||
encode(size_t size, lzma_action action)
|
||||
{
|
||||
static const size_t CHUNK = 64;
|
||||
uint8_t in[CHUNK];
|
||||
uint8_t out[CHUNK];
|
||||
lzma_ret ret;
|
||||
|
|
Loading…
Reference in a new issue