1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-07 12:23:51 +03:00

r9173: catch ep->local being NULL

This commit is contained in:
Andrew Tridgell
2005-08-07 06:16:32 +00:00
committed by Gerald (Jerry) Carter
parent ca6f049693
commit 9f75bc3ca0

View File

@@ -211,7 +211,9 @@ void ejsCloseEngine(EjsId eid)
mprDestroyVar(&ep->result);
mprDestroyVar(&ep->tokenNumber);
mprDeleteProperty(ep->local, "local");
if (ep->local) {
mprDeleteProperty(ep->local, "local");
}
mprDeleteProperty(ep->global, "this");
mprDeleteProperty(ep->global, "global");