Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/7f8ea622695ac93137e550c439e7db3c677b8ed7
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/7f8ea622695ac93137e550c439e7db3c677b8ed7
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/7f8ea622695ac93137e550c439e7db3c677b8ed7

The branch, master has been updated
       via  7f8ea622695ac93137e550c439e7db3c677b8ed7 (commit)
      from  aa050729b47b5097822113bd45c9be04a6b4275c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=7f8ea622695ac93137e550c439e7db3c677b8ed7
commit 7f8ea622695ac93137e550c439e7db3c677b8ed7
Author: Vincent Sanders <vi...@kyllikki.org>
Commit: Vincent Sanders <vi...@kyllikki.org>

    Attempt to fix maybe uninitialised error

diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index c4eb5df..f26c2cd 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -1132,7 +1132,7 @@ fetch_curl_postdata_convert(CURL *chandle,
  */
 static CURLcode fetch_curl_set_postdata(struct curl_fetch_info *f)
 {
-       CURLcode code;
+       CURLcode code = CURLE_OK;
 
 #undef SETOPT
 #define SETOPT(option, value) { \


-----------------------------------------------------------------------

Summary of changes:
 content/fetchers/curl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index c4eb5df..f26c2cd 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -1132,7 +1132,7 @@ fetch_curl_postdata_convert(CURL *chandle,
  */
 static CURLcode fetch_curl_set_postdata(struct curl_fetch_info *f)
 {
-       CURLcode code;
+       CURLcode code = CURLE_OK;
 
 #undef SETOPT
 #define SETOPT(option, value) { \


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- netsurf-commits@netsurf-browser.org
To unsubscribe send an email to netsurf-commits-le...@netsurf-browser.org

Reply via email to