Fix server segfaulting on start
FossilOrigin-Name: 9cb357d9b64250fcaa4badfd1f6ba6feb1bfc27a8a9e6375421e5fe46eceec24
This commit is contained in:
parent
9d7eef8185
commit
c49ae6bbe5
1 changed files with 3 additions and 2 deletions
|
@ -160,7 +160,7 @@ int
|
||||||
main(int argc, char *argv[])
|
main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int uprate = 0, maxcl = 4;
|
int uprate = 0, maxcl = 4;
|
||||||
char *sdesc = "", *ip = "", *master = NULL, *passwd = "";
|
const char *sdesc = "", *ip = "", *master = NULL, *passwd = "";
|
||||||
|
|
||||||
for (int i = 1; i < argc; i++) {
|
for (int i = 1; i < argc; i++) {
|
||||||
char *a = &argv[i][2];
|
char *a = &argv[i][2];
|
||||||
|
@ -191,7 +191,8 @@ main(int argc, char *argv[])
|
||||||
|
|
||||||
if (enet_initialize() < 0)
|
if (enet_initialize() < 0)
|
||||||
fatal(@"Unable to initialise network module");
|
fatal(@"Unable to initialise network module");
|
||||||
initserver(true, uprate, @(sdesc), @(ip), @(master), @(passwd), maxcl);
|
initserver(true, uprate, @(sdesc), @(ip),
|
||||||
|
(master != NULL ? @(master) : nil), @(passwd), maxcl);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue