1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r9173: catch ep->local being NULL

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

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");