Skip to content
Closed
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
1 change: 1 addition & 0 deletions samples/bpf/xdplua_user.c
Original file line numberDiff line numberDiff line change
Expand Up@@ -60,6 +60,7 @@ static char *extract_lua_prog(const char *path)
memset(lua_prog, 0, prog_size + 1);
if (fread(lua_prog, 1, prog_size, f) < 0) {
perror("unable to read lua file");
free(lua_prog);
return NULL;
}

Expand Down