projects
/
m6w6
/
libmemcached
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
Fixed mget_execute possibly failing into some non ending recursive call
[m6w6/libmemcached]
/
tests
/
start.c
1
#include <stdio.h>
2
#include <string.h>
3
#include
"server.h"
4
5
int
main
(
void
)
6
{
7
server_startup_st construct
;
8
9
memset
(&
construct
,
0
,
sizeof
(
server_startup_st
));
10
11
construct
.
count
=
4
;
12
13
server_startup
(&
construct
);
14
15
return
0
;
16
}