wanggang.wang@gmail.com wrote:
Full_Name: Gang Wang Version: 2.3.20 OS: URL: ftp://ftp.openldap.org/incoming/ Submission from: (NULL) (202.108.130.138)
openldap-2.3.20/servers/slapd/daemon.c
There is one declaration in slap_daemon structure:
fd_set sd_actives;
this variable is not initialized ... is this OK with all compilers?
It is a basic part of the C language specification - variables declared at file scope are implicitly initialized to zero. Perhaps you need to study the language a bit more before trying to do any more work in it.