Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/652078f8cf098c1afb6e7c9dfcb0d70415db301c
...commit
http://git.netsurf-browser.org/netsurf.git/commit/652078f8cf098c1afb6e7c9dfcb0d70415db301c
...tree
http://git.netsurf-browser.org/netsurf.git/tree/652078f8cf098c1afb6e7c9dfcb0d70415db301c
The branch, master has been updated
via 652078f8cf098c1afb6e7c9dfcb0d70415db301c (commit)
from 313e5cabba172c79a0a8d2bab0b8a99c204616fc (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=652078f8cf098c1afb6e7c9dfcb0d70415db301c
commit 652078f8cf098c1afb6e7c9dfcb0d70415db301c
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>
fix erronenous child variable assignment
diff --git a/content/handlers/html/textselection.c
b/content/handlers/html/textselection.c
index cc08aef..9de7590 100644
--- a/content/handlers/html/textselection.c
+++ b/content/handlers/html/textselection.c
@@ -448,7 +448,7 @@ static unsigned selection_label_subtree(struct box *box,
unsigned idx)
assert(box != NULL);
- box = box->children;
+ child = box->children;
box->byte_offset = idx;
-----------------------------------------------------------------------
Summary of changes:
content/handlers/html/textselection.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/handlers/html/textselection.c
b/content/handlers/html/textselection.c
index cc08aef..9de7590 100644
--- a/content/handlers/html/textselection.c
+++ b/content/handlers/html/textselection.c
@@ -448,7 +448,7 @@ static unsigned selection_label_subtree(struct box *box,
unsigned idx)
assert(box != NULL);
- box = box->children;
+ child = box->children;
box->byte_offset = idx;
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]