1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

r9566: fix an uninitialised variable

(This used to be commit 7082440a70)
This commit is contained in:
Andrew Tridgell
2005-08-24 08:28:49 +00:00
committed by Gerald (Jerry) Carter
parent 00e79ceb49
commit cfa981c656

View File

@ -132,7 +132,7 @@ static int ejs_ldbAddModify(MprVarHandle eid, int argc, struct MprVar **argv,
const char *ldifstring; const char *ldifstring;
struct ldb_context *ldb; struct ldb_context *ldb;
struct ldb_ldif *ldif; struct ldb_ldif *ldif;
int ret; int ret = 0;
if (argc != 1) { if (argc != 1) {
ejsSetErrorMsg(eid, "ldb.add/modify invalid arguments"); ejsSetErrorMsg(eid, "ldb.add/modify invalid arguments");