Gitweb links:

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

The branch, master has been updated
       via  33ba78065a5121fb5485a16ca7025056019d5058 (commit)
      from  94c5536129b1e047f787ae13bc7dd52505977315 (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=33ba78065a5121fb5485a16ca7025056019d5058
commit 33ba78065a5121fb5485a16ca7025056019d5058
Author: John-Mark Bell <[email protected]>
Commit: John-Mark Bell <[email protected]>

    content/textplain: fix U+FFFD encoding

diff --git a/content/handlers/text/textplain.c 
b/content/handlers/text/textplain.c
index 60051f5..cee89a1 100644
--- a/content/handlers/text/textplain.c
+++ b/content/handlers/text/textplain.c
@@ -264,7 +264,7 @@ textplain_drain_input(textplain_content *c,
                      parserutils_inputstream *stream,
                      parserutils_error terminator)
 {
-       static const uint8_t *u_fffd = (const uint8_t *) "\xef\xbf\xfd";
+       static const uint8_t *u_fffd = (const uint8_t *) "\xef\xbf\xbd";
        const uint8_t *ch;
        size_t chlen, offset = 0;
 


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

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

diff --git a/content/handlers/text/textplain.c 
b/content/handlers/text/textplain.c
index 60051f5..cee89a1 100644
--- a/content/handlers/text/textplain.c
+++ b/content/handlers/text/textplain.c
@@ -264,7 +264,7 @@ textplain_drain_input(textplain_content *c,
                      parserutils_inputstream *stream,
                      parserutils_error terminator)
 {
-       static const uint8_t *u_fffd = (const uint8_t *) "\xef\xbf\xfd";
+       static const uint8_t *u_fffd = (const uint8_t *) "\xef\xbf\xbd";
        const uint8_t *ch;
        size_t chlen, offset = 0;
 


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

Reply via email to