Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
James Lowden
OpenLDAP
Commits
ef2b505b
Commit
ef2b505b
authored
Sep 12, 2020
by
Howard Chu
Committed by
Quanah Gibson-Mount
Sep 11, 2020
Browse files
ITS#9043 Fix new log msg crashes
Solaris stdio hates NULL pointers
parent
fdf6ee50
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/overlays/syncprov.c
View file @
ef2b505b
...
...
@@ -1169,7 +1169,7 @@ syncprov_qresp( opcookie *opc, syncops *so, int mode )
}
Debug
(
LDAP_DEBUG_SYNC
,
"%s syncprov_qresp: "
"set up a new syncres mode=%d csn=%s
\n
"
,
so
->
s_op
->
o_log_prefix
,
mode
,
csn
.
bv_val
);
so
->
s_op
->
o_log_prefix
,
mode
,
csn
.
bv_val
?
csn
.
bv_val
:
""
);
ldap_pvt_thread_mutex_unlock
(
&
ri
->
ri_mutex
);
ldap_pvt_thread_mutex_lock
(
&
so
->
s_mutex
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment