This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#1357
from dangowrt/fix-lxc-on-mpc85xx
lxc: fix build on mpc85xx
lilik-openwrt-22.03
Luka Perkov
10 years ago
parent
ca26e17048
c8a6990932
commit
7f9c9bff61
1 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
utils/lxc/patches/016-uninitialized-ret-in-monitor.patch
+ 11
- 0
utils/lxc/patches/016-uninitialized-ret-in-monitor.patch
View File
@ -0,0 +1,11 @@
--- a/src/lxc/monitor.c
+++ b/src/lxc/monitor.c
@@ -181,7 +181,7 @@ int lxc_monitor_sock_name(const char *lx
int lxc_monitor_open(const char *lxcpath)
{
struct sockaddr_un addr;
- int fd,ret;
+ int fd,ret = 0;
int retry,backoff_ms[] = {10, 50, 100};
size_t len;
Write
Preview
Loading…
Cancel
Save