Gitweb links:

...log 
http://git.netsurf-browser.org/libnsfb.git/shortlog/84fb99890ff127c763efc5014633b8e3a4c762b4
...commit 
http://git.netsurf-browser.org/libnsfb.git/commit/84fb99890ff127c763efc5014633b8e3a4c762b4
...tree 
http://git.netsurf-browser.org/libnsfb.git/tree/84fb99890ff127c763efc5014633b8e3a4c762b4

The branch, master has been updated
       via  84fb99890ff127c763efc5014633b8e3a4c762b4 (commit)
      from  b6e716f4ece4105eeaa2ff8971d1e0b6a78f73be (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/libnsfb.git/commit/?id=84fb99890ff127c763efc5014633b8e3a4c762b4
commit 84fb99890ff127c763efc5014633b8e3a4c762b4
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    generic: Initialise variable to silence warning
    
    Signed-off-by: Daniel Silverstone <[email protected]>

diff --git a/src/plot/generic.c b/src/plot/generic.c
index 15654b0..e343390 100644
--- a/src/plot/generic.c
+++ b/src/plot/generic.c
@@ -267,7 +267,7 @@ static bool polygon(nsfb_t *nsfb, const int *p, unsigned 
int n, nsfb_colour_t c)
        int poly_x0, poly_y0; /* Bounding box top left corner */
        int poly_x1, poly_y1; /* Bounding box bottom right corner */
        int i, j; /* indexes */
-       int x0, x1; /* filled span extents */
+       int x0 = 0, x1 = 0; /* filled span extents */
        int y; /* current y coordinate */
        int y_max; /* bottom of plot area */
        nsfb_bbox_t fline;


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

Summary of changes:
 src/plot/generic.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plot/generic.c b/src/plot/generic.c
index 15654b0..e343390 100644
--- a/src/plot/generic.c
+++ b/src/plot/generic.c
@@ -267,7 +267,7 @@ static bool polygon(nsfb_t *nsfb, const int *p, unsigned 
int n, nsfb_colour_t c)
        int poly_x0, poly_y0; /* Bounding box top left corner */
        int poly_x1, poly_y1; /* Bounding box bottom right corner */
        int i, j; /* indexes */
-       int x0, x1; /* filled span extents */
+       int x0 = 0, x1 = 0; /* filled span extents */
        int y; /* current y coordinate */
        int y_max; /* bottom of plot area */
        nsfb_bbox_t fline;


-- 
NetSurf Framebuffer library

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

Reply via email to