Skip to content
Snippets Groups Projects
Commit 031991e0 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

do not return a pointer to an automatic variable in case of success

parent f9766f68
No related branches found
No related tags found
No related merge requests found
......@@ -216,6 +216,7 @@ retry: /* transaction retry */
*text = NULL;
goto retry;
case 0:
*text = NULL;
break;
default:
rc = LDAP_OTHER;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment