Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

libbpf: Remove unneeded semicolon

Remove unneeded semicolon in zip_archive_open().

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20240926023823.3632993-1-nichen@iscas.ac.cn
Signed-off-by: Alexei Starovoitov <ast@kernel.org>

authored by

Chen Ni and committed by
Alexei Starovoitov
90d0f736 89abc408

+1 -1
+1 -1
tools/lib/bpf/zip.c
··· 223 223 if (!archive) { 224 224 munmap(data, size); 225 225 return ERR_PTR(-ENOMEM); 226 - }; 226 + } 227 227 228 228 archive->data = data; 229 229 archive->size = size;