extra check in mg_start(): options may be NULL

This commit is contained in:
valenok 2010-09-18 04:20:10 +01:00
parent 1d490f9d6c
commit 3e5d2bd3ac

View File

@ -3999,7 +3999,7 @@ struct mg_context *mg_start(mg_callback_t user_callback, const char **options) {
ctx = calloc(1, sizeof(*ctx));
ctx->user_callback = user_callback;
while ((name = *options++) != NULL) {
while (options && (name = *options++) != NULL) {
if ((i = get_option_index(name)) == -1) {
cry(fc(ctx), "Invalid option: %s", name);
free_context(ctx);