opt: do not crash in av_set_options_string() if opts == NULL

Add missing NULL check, and update documentation accordingly.
This commit is contained in:
Stefano Sabatini
2011-06-19 02:49:04 +02:00
parent 15f03725ce
commit 141f03541b
3 changed files with 4 additions and 1 deletions

View File

@@ -521,6 +521,8 @@ int av_set_options_string(void *ctx, const char *opts,
{
int ret, count = 0;
if (!opts)
return 0;
while (*opts) {
if ((ret = parse_key_value_pair(ctx, &opts, key_val_sep, pairs_sep)) < 0)
return ret;