# HG changeset patch # User Paul Aurich # Date 1268877439 25200 # Node ID 5f3ccf7dd3f19ed6b37c0dc995d5da49bf13b11d # Parent 6e57f5e0cc91adf173d674f72b3e591b753adeaf util.sasl_cyrus: Protect the call to cyrussasl.server_new properly. diff -r 6e57f5e0cc91 -r 5f3ccf7dd3f1 util/sasl_cyrus.lua --- a/util/sasl_cyrus.lua Wed Mar 17 15:29:14 2010 -0700 +++ b/util/sasl_cyrus.lua Wed Mar 17 18:57:19 2010 -0700 @@ -52,7 +52,14 @@ sasl_i.realm = realm; sasl_i.service_name = service_name; - sasl_i.cyrus = cyrussasl.server_new(service_name, nil, realm, nil, nil) + + local st, ret = pcall(cyrussasl.server_new, service_name, nil, realm, nil, nil) + if st then + sasl_i.cyrus = ret; + else + log("error", "server_new failed: %s", ret); + return nil; + end if cyrussasl.set_canon_cb then local c14n_cb = function (user) @@ -63,10 +70,6 @@ cyrussasl.set_canon_cb(sasl_i.cyrus, c14n_cb); end - if sasl_i.cyrus == 0 then - log("error", "got NULL return value from server_new") - return nil; - end cyrussasl.setssf(sasl_i.cyrus, 0, 0xffffffff) local s = setmetatable(sasl_i, method); return s;