Description of problem: I just tried to compile development package curl-7.10.8-1 The compiler said transfer.c(1861): remark #592: variable "gotourl" is used before its value is set The source code is char *gotourl; res = Curl_done(conn); if(CURLE_OK == res) { newurl = strdup(data->change.url); res = Curl_follow(data, gotourl); Suggest init gotourl before first use. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
in 7.11.1, gotourl is inited with its declaration by the return value of a strdup()