Skip to content

Commit

Permalink
Update asrmain.c
Browse files Browse the repository at this point in the history
修正windows下的free问题
  • Loading branch information
authorfu committed Jan 13, 2020
1 parent fc39ba2 commit 0bfea1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rest-api-asr/c/asrmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ RETURN_CODE run_asr(struct asr_config *config, const char *token) {
//测试自训练平台需要打开以下信息
/*snprintf(url, sizeof(url), "%s?cuid=%s&token=%s&dev_pid=%d&lm_id=%d",
config->url, cuid, token, config->dev_pid, config->lm_id);*/
free(cuid);
curl_free(cuid);


struct curl_slist *headerlist = NULL;
Expand Down

0 comments on commit 0bfea1f

Please sign in to comment.