forked from len0rd/rockbox
Bad pool area allocation fixed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@729 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
881cd23652
commit
f690971d67
2 changed files with 4 additions and 2 deletions
|
|
@ -42,7 +42,8 @@ SECTIONS
|
|||
.heap :
|
||||
{
|
||||
_poolstart = .;
|
||||
_poolend = . + 0x20000;
|
||||
. = . + 0x20000;
|
||||
_poolend = .;
|
||||
}
|
||||
|
||||
.mp3buf :
|
||||
|
|
|
|||
|
|
@ -42,7 +42,8 @@ SECTIONS
|
|||
.heap :
|
||||
{
|
||||
_poolstart = .;
|
||||
_poolend = . + 0x20000;
|
||||
. = . + 0x20000;
|
||||
_poolend = .;
|
||||
}
|
||||
|
||||
.mp3buf :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue