Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/63fc84a25f97c811259dbf1af51fc045b95c5659
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/63fc84a25f97c811259dbf1af51fc045b95c5659
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/63fc84a25f97c811259dbf1af51fc045b95c5659

The branch, master has been updated
       via  63fc84a25f97c811259dbf1af51fc045b95c5659 (commit)
      from  8b0aec4bac4af7fe119227280ed15bf014f104c3 (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=63fc84a25f97c811259dbf1af51fc045b95c5659
commit 63fc84a25f97c811259dbf1af51fc045b95c5659
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    netsurf_exit(): Finalise DOM namespace strings
    
    Signed-off-by: Daniel Silverstone <[email protected]>

diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 02080eb..e3babd8 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -24,6 +24,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <libwapcaplet/libwapcaplet.h>
+#include <dom/dom.h>
 
 #include "netsurf/inttypes.h"
 #include "utils/config.h"
@@ -253,6 +254,9 @@ void netsurf_exit(void)
        messages_destroy();
 
        corestrings_fini();
+       if (dom_namespace_finalise() != DOM_NO_ERR) {
+               NSLOG(netsurf, WARNING, "Unable to finalise DOM namespace 
strings");
+       }
        NSLOG(netsurf, INFO, "Remaining lwc strings:");
        lwc_iterate_strings(netsurf_lwc_iterator, NULL);
 


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

Summary of changes:
 desktop/netsurf.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 02080eb..e3babd8 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -24,6 +24,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <libwapcaplet/libwapcaplet.h>
+#include <dom/dom.h>
 
 #include "netsurf/inttypes.h"
 #include "utils/config.h"
@@ -253,6 +254,9 @@ void netsurf_exit(void)
        messages_destroy();
 
        corestrings_fini();
+       if (dom_namespace_finalise() != DOM_NO_ERR) {
+               NSLOG(netsurf, WARNING, "Unable to finalise DOM namespace 
strings");
+       }
        NSLOG(netsurf, INFO, "Remaining lwc strings:");
        lwc_iterate_strings(netsurf_lwc_iterator, NULL);
 


-- 
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