Gitweb links:

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

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

    do not count the null terminator in list counter style length formatting

diff --git a/content/handlers/html/list_counter_style.c 
b/content/handlers/html/list_counter_style.c
index d2be0f7..af643df 100644
--- a/content/handlers/html/list_counter_style.c
+++ b/content/handlers/html/list_counter_style.c
@@ -523,7 +523,7 @@ list_counter_style_value(char *text,
                res = text_len-2;
        }
        text[res++] = '.';
-       text[res++] = 0;
+       text[res] = 0;
 
        return res;
 }


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

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

diff --git a/content/handlers/html/list_counter_style.c 
b/content/handlers/html/list_counter_style.c
index d2be0f7..af643df 100644
--- a/content/handlers/html/list_counter_style.c
+++ b/content/handlers/html/list_counter_style.c
@@ -523,7 +523,7 @@ list_counter_style_value(char *text,
                res = text_len-2;
        }
        text[res++] = '.';
-       text[res++] = 0;
+       text[res] = 0;
 
        return res;
 }


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to