Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/92fff918ccbcb62a7406fe88894153f36370ef99
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/92fff918ccbcb62a7406fe88894153f36370ef99
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/92fff918ccbcb62a7406fe88894153f36370ef99

The branch, master has been updated
       via  92fff918ccbcb62a7406fe88894153f36370ef99 (commit)
      from  cbb0c05258e91fc3c3c6a421141df738fcfe7473 (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=92fff918ccbcb62a7406fe88894153f36370ef99
commit 92fff918ccbcb62a7406fe88894153f36370ef99
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fix "may be used uninitialised" warning

diff --git a/desktop/save_complete.c b/desktop/save_complete.c
index 4c1a399..24c1881 100644
--- a/desktop/save_complete.c
+++ b/desktop/save_complete.c
@@ -420,7 +420,7 @@ save_complete_save_imported_sheets(save_complete_ctx *ctx,
                                   struct nscss_import *imports,
                                   uint32_t import_count)
 {
-       nserror res;
+       nserror res = NSERROR_OK;
        uint32_t i;
 
        for (i = 0; i < import_count; i++) {


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

Summary of changes:
 desktop/save_complete.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/desktop/save_complete.c b/desktop/save_complete.c
index 4c1a399..24c1881 100644
--- a/desktop/save_complete.c
+++ b/desktop/save_complete.c
@@ -420,7 +420,7 @@ save_complete_save_imported_sheets(save_complete_ctx *ctx,
                                   struct nscss_import *imports,
                                   uint32_t import_count)
 {
-       nserror res;
+       nserror res = NSERROR_OK;
        uint32_t i;
 
        for (i = 0; i < import_count; i++) {


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to