Browse Source
Merge pull request #28 from Schafwolle/fb-valgrind-fix
fixed unitalized warning of valgrind and optimized dockerfile
pull/30/head
Philipp Riederer
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
test-in-docker/src/CMakeLists.txt
-
test-in-docker/src/main.c
|
|
@ -18,7 +18,7 @@ include_directories( |
|
|
|
|
|
|
|
include(${LWIP_DIR}/src/Filelists.cmake) |
|
|
|
|
|
|
|
add_compile_options(-Wall -Wextra -Werror) |
|
|
|
add_compile_options(-Wall -Wextra -Werror -g3) |
|
|
|
|
|
|
|
add_executable(lwip-runner |
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/main.c |
|
|
|
|
|
@ -129,7 +129,7 @@ int main(int argc, char **argv) { |
|
|
|
return 1; |
|
|
|
} |
|
|
|
|
|
|
|
FATFS fs; |
|
|
|
FATFS fs = {}; |
|
|
|
unsigned char *buf[4096]; |
|
|
|
|
|
|
|
(void) argc; /* suppress unused warning */ |
|
|
|