Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/411fdc6186434382d0ffaa45a104ecce106c1b47
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/411fdc6186434382d0ffaa45a104ecce106c1b47
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/411fdc6186434382d0ffaa45a104ecce106c1b47

The branch, master has been updated
       via  411fdc6186434382d0ffaa45a104ecce106c1b47 (commit)
      from  b0ca8175bb5bffaad44b3226ceebfd2d09894128 (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/commitdiff/411fdc6186434382d0ffaa45a104ecce106c1b47
commit 411fdc6186434382d0ffaa45a104ecce106c1b47
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fix return check on lwc operation

diff --git a/css/select.c b/css/select.c
index fa38b4e..84b8550 100644
--- a/css/select.c
+++ b/css/select.c
@@ -801,8 +801,7 @@ css_error node_has_name(void *pw, void *node,
        nscss_select_ctx *ctx = pw;
        dom_node *n = node;
 
-       lwc_string_isequal(qname->name, ctx->universal, match);
-       if (*match == false) {
+       if (lwc_string_isequal(qname->name, ctx->universal, match) == 
lwc_error_ok && *match == false) {
                dom_string *name;
                dom_exception err;
 


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

Summary of changes:
 css/select.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/css/select.c b/css/select.c
index fa38b4e..84b8550 100644
--- a/css/select.c
+++ b/css/select.c
@@ -801,8 +801,7 @@ css_error node_has_name(void *pw, void *node,
        nscss_select_ctx *ctx = pw;
        dom_node *n = node;
 
-       lwc_string_isequal(qname->name, ctx->universal, match);
-       if (*match == false) {
+       if (lwc_string_isequal(qname->name, ctx->universal, match) == 
lwc_error_ok && *match == false) {
                dom_string *name;
                dom_exception err;
 


-- 
NetSurf Browser

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

Reply via email to