Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/103f99c2103f9c0a74b9da2d1d8958acd0ccb4cb
...commit
http://git.netsurf-browser.org/netsurf.git/commit/103f99c2103f9c0a74b9da2d1d8958acd0ccb4cb
...tree
http://git.netsurf-browser.org/netsurf.git/tree/103f99c2103f9c0a74b9da2d1d8958acd0ccb4cb
The branch, master has been updated
via 103f99c2103f9c0a74b9da2d1d8958acd0ccb4cb (commit)
from f855774e1a479941f3cdea919a3e9c4de14dbe6a (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=103f99c2103f9c0a74b9da2d1d8958acd0ccb4cb
commit 103f99c2103f9c0a74b9da2d1d8958acd0ccb4cb
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Correct alignment (thx Jaime Cagigal)
diff --git a/frontends/amiga/os3support.c b/frontends/amiga/os3support.c
index c082602..5c1e40d 100644
--- a/frontends/amiga/os3support.c
+++ b/frontends/amiga/os3support.c
@@ -332,7 +332,7 @@ void CloseOutlineFont(struct OutlineFont *of, struct List
*list)
int64 GetFileSize(BPTR fh)
{
int32 size = 0;
- struct FileInfoBlock *fib = malloc(sizeof(struct FileInfoBlock));
+ struct FileInfoBlock *fib = AllocDosObject(DOS_FIB, NULL);
if(fib == NULL) return 0;
ExamineFH(fh, fib);
-----------------------------------------------------------------------
Summary of changes:
frontends/amiga/os3support.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontends/amiga/os3support.c b/frontends/amiga/os3support.c
index c082602..5c1e40d 100644
--- a/frontends/amiga/os3support.c
+++ b/frontends/amiga/os3support.c
@@ -332,7 +332,7 @@ void CloseOutlineFont(struct OutlineFont *of, struct List
*list)
int64 GetFileSize(BPTR fh)
{
int32 size = 0;
- struct FileInfoBlock *fib = malloc(sizeof(struct FileInfoBlock));
+ struct FileInfoBlock *fib = AllocDosObject(DOS_FIB, NULL);
if(fib == NULL) return 0;
ExamineFH(fh, fib);
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org