Skip to content

Commit 98d8dfa

Browse files
committed
wip
Signed-off-by: Federico Di Pierro <[email protected]>
1 parent affc009 commit 98d8dfa

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

cmake/modules/falcosecurity-libs.cmake

+3-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ else()
4242
# version (or branch, or commit) just pass the variable - ie., `cmake
4343
# -DFALCOSECURITY_LIBS_VERSION=dev ..`
4444
if(NOT FALCOSECURITY_LIBS_VERSION)
45-
set(FALCOSECURITY_LIBS_VERSION "8baec4b102662200b3a382722f01276748125e0f")
46-
set(FALCOSECURITY_LIBS_CHECKSUM
47-
"SHA256=e2750d337f7e28780bd7b4d2efa6ea7a99f43aed2815fd0f7529bfac1a10f429"
48-
)
45+
set(FALCOSECURITY_LIBS_VERSION "bef6c42caf5bf205af1546b0e7fd78a087b695d5")
46+
# set(FALCOSECURITY_LIBS_CHECKSUM
47+
# "SHA256=e2750d337f7e28780bd7b4d2efa6ea7a99f43aed2815fd0f7529bfac1a10f429" )
4948
endif()
5049

5150
# cd /path/to/build && cmake /path/to/source

userspace/engine/logger.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ void falco_logger::log(falco_logger::level priority, const std::string&& msg) {
100100
return;
101101
}
102102

103+
if(msg.empty()) {
104+
return;
105+
}
106+
103107
std::string copy = msg;
104108

105109
#ifndef _WIN32

0 commit comments

Comments
 (0)