Gitweb links:

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

The branch, master has been updated
       via  75dcf093940c04a6c685dba35a278e35da018727 (commit)
      from  66d0f14b32d11042872f6bfe33152521bf470e6a (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=75dcf093940c04a6c685dba35a278e35da018727
commit 75dcf093940c04a6c685dba35a278e35da018727
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>

    NULL a couple of variables

diff --git a/frontends/amiga/filetype.c b/frontends/amiga/filetype.c
index 05f130e..61e4929 100644
--- a/frontends/amiga/filetype.c
+++ b/frontends/amiga/filetype.c
@@ -352,7 +352,7 @@ static APTR ami_mime_guess_add_datatype(struct DataType 
*dt, lwc_string **lwc_mi
 {
        struct nsObject *node;
        char mimetype[100];
-       char *dt_name_lwr;
+       char *dt_name_lwr = NULL;
        struct ami_mime_entry *mimeentry;
        lwc_error lerror;
        struct DataTypeHeader *dth = dt->dtn_Header;
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index afb49a5..ac173eb 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -251,7 +251,7 @@ STRPTR ami_locale_langs(void)
 {
        struct Locale *locale;
        STRPTR acceptlangs = NULL;
-       char *remapped;
+       char *remapped = NULL;
 
        if((locale = OpenLocale(NULL)))
        {


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

Summary of changes:
 frontends/amiga/filetype.c |    2 +-
 frontends/amiga/gui.c      |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/frontends/amiga/filetype.c b/frontends/amiga/filetype.c
index 05f130e..61e4929 100644
--- a/frontends/amiga/filetype.c
+++ b/frontends/amiga/filetype.c
@@ -352,7 +352,7 @@ static APTR ami_mime_guess_add_datatype(struct DataType 
*dt, lwc_string **lwc_mi
 {
        struct nsObject *node;
        char mimetype[100];
-       char *dt_name_lwr;
+       char *dt_name_lwr = NULL;
        struct ami_mime_entry *mimeentry;
        lwc_error lerror;
        struct DataTypeHeader *dth = dt->dtn_Header;
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index afb49a5..ac173eb 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -251,7 +251,7 @@ STRPTR ami_locale_langs(void)
 {
        struct Locale *locale;
        STRPTR acceptlangs = NULL;
-       char *remapped;
+       char *remapped = NULL;
 
        if((locale = OpenLocale(NULL)))
        {


-- 
NetSurf Browser

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

Reply via email to