Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/3e3a8e9549d45b2068617337b9b14f6b42896259
...commit
http://git.netsurf-browser.org/netsurf.git/commit/3e3a8e9549d45b2068617337b9b14f6b42896259
...tree
http://git.netsurf-browser.org/netsurf.git/tree/3e3a8e9549d45b2068617337b9b14f6b42896259
The branch, master has been updated
via 3e3a8e9549d45b2068617337b9b14f6b42896259 (commit)
from a4da4612c283531e16558412bf45a527ceb1d9f2 (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=3e3a8e9549d45b2068617337b9b14f6b42896259
commit 3e3a8e9549d45b2068617337b9b14f6b42896259
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Fix crash on exit
diff --git a/frontends/amiga/launch.c b/frontends/amiga/launch.c
index a54b852..785f667 100755
--- a/frontends/amiga/launch.c
+++ b/frontends/amiga/launch.c
@@ -74,7 +74,7 @@ static void ami_openurl_free_list(struct MinList *list)
struct ami_protocol *node;
struct ami_protocol *nnode;
- if(IsMinListEmpty(list)) {
+ if(!IsMinListEmpty(list)) {
node = (struct ami_protocol *)GetHead((struct List *)list);
do
-----------------------------------------------------------------------
Summary of changes:
frontends/amiga/launch.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontends/amiga/launch.c b/frontends/amiga/launch.c
index a54b852..785f667 100755
--- a/frontends/amiga/launch.c
+++ b/frontends/amiga/launch.c
@@ -74,7 +74,7 @@ static void ami_openurl_free_list(struct MinList *list)
struct ami_protocol *node;
struct ami_protocol *nnode;
- if(IsMinListEmpty(list)) {
+ if(!IsMinListEmpty(list)) {
node = (struct ami_protocol *)GetHead((struct List *)list);
do
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org