Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \
libtinyxml2-dev \
openssl

ENTRYPOINT ["/bin/bash", "-c", "cd && colcon build --event-handlers=console_direct+"]
ENTRYPOINT ["/bin/bash", "-c", "cd && colcon build --event-handlers=console_direct+ --cmake-args -DSECURITY=ON -DFASTDDS_STATISTICS=ON"]
3 changes: 1 addition & 2 deletions src/cpp/rtps/persistence/sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -35248,8 +35248,7 @@ SQLITE_PRIVATE int sqlite3IsOverflow(double x){
** than 1GiB) the value returned might be less than the true string length.
*/
SQLITE_PRIVATE int sqlite3Strlen30(const char *z){
if( z==0 ) return 0;
return 0x3fffffff & (int)strlen(z);
return z==0 ? 0 : (0x3fffffff & (int)strlen(z));
}

/*
Expand Down
1 change: 1 addition & 0 deletions src/cpp/rtps/security/common/SharedSecretHandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <rtps/security/common/Handle.h>

#include <cstdint>
#include <vector>

namespace eprosima {
Expand Down
Loading