Skip to content

Commit acbcf59

Browse files
committed
update(deps): bump libs to 0.22.2
Signed-off-by: Roberto Scolaro <[email protected]>
1 parent 0d3e86d commit acbcf59

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

cmake/modules/falcosecurity-libs.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ else()
4747
# In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable -
4848
# ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..`
4949
if(NOT FALCOSECURITY_LIBS_VERSION)
50-
set(FALCOSECURITY_LIBS_VERSION "0.21.0")
51-
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=9e977001dd42586df42a5dc7e7a948c297124865a233402e44bdec68839d322a")
50+
set(FALCOSECURITY_LIBS_VERSION "0.22.2")
51+
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=53cfb7062cac80623dec7496394739aabdfee8a774942f94be0990d81e3b2fbc")
5252
endif()
5353

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

userspace/sinspui/cursescomponents.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ const char* spy_text_renderer::process_event_spy(sinsp_evt* evt, int64_t* len)
136136
return NULL;
137137
}
138138
ASSERT(parinfo->m_len == sizeof(int64_t));
139-
*len = *(int64_t*)parinfo->m_val;
139+
*len = *(int64_t*)parinfo->data();
140140
if(*len <= 0)
141141
{
142142
return NULL;

userspace/sysdig/sysdig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -847,13 +847,13 @@ captureinfo do_inspect(sinsp *inspector, sinsp_cycledumper *dumper,
847847
if(etype == PPME_GENERIC_E)
848848
{
849849
const sinsp_evt_param *parinfo = ev->get_param(0);
850-
uint16_t id = *(int16_t *)parinfo->m_val;
850+
uint16_t id = *(int16_t *)parinfo->data();
851851
summary_table[PPM_EVENT_MAX + id * 2].m_ncalls++;
852852
}
853853
else if(etype == PPME_GENERIC_X)
854854
{
855855
const sinsp_evt_param *parinfo = ev->get_param(0);
856-
uint16_t id = *(int16_t *)parinfo->m_val;
856+
uint16_t id = *(int16_t *)parinfo->data();
857857
summary_table[PPM_EVENT_MAX + id * 2 + 1].m_ncalls++;
858858
}
859859
else

userspace/sysdig/utils/sinsp_syslog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ void sinsp_syslog_decoder::parse(sinsp_evt* evt) {
102102
}
103103

104104
if(parinfo) {
105-
const char* data = parinfo->m_val;
106-
uint32_t datalen = parinfo->m_len;
105+
const char* data = parinfo->data();
106+
uint32_t datalen = parinfo->len();
107107
parse_data(data, datalen);
108108
}
109109
}

0 commit comments

Comments
 (0)