static void *oggdec_parse_config(int argc, char **argv)
{
- struct oggdec_filter_args_info *ret = para_calloc(sizeof(struct oggdec_filter_args_info));
- if (!oggdec_cmdline_parser(argc, argv, ret))
- return ret;
- free(ret);
+ int ret;
+ struct oggdec_filter_args_info *ogg_conf;
+
+ ogg_conf = para_calloc(sizeof(*ogg_conf));
+ ret = oggdec_cmdline_parser(argc, argv, ogg_conf);
+ if (ret)
+ goto err;
+ if (ogg_conf->bufsize_arg < 0)
+ goto err;
+ if (ogg_conf->bufsize_arg >= INT_MAX / 1024)
+ goto err;
+ if (ogg_conf->initial_buffer_arg < 0)
+ goto err;
+ if (ogg_conf->initial_buffer_arg >= INT_MAX / 1024)
+ goto err;
+ return ogg_conf;
+err:
+ free(ogg_conf);
return NULL;
}