!44 修复堆内存异常分支未释放锁的问题

Merge pull request !44 from likailong/master
This commit is contained in:
openharmony_ci 2020-12-24 09:05:08 +08:00 committed by Gitee
commit 58830073a6
1 changed files with 2 additions and 1 deletions

View File

@ -186,7 +186,8 @@ VOID *LOS_DoBrk(VOID *addr)
(VOID)LOS_MuxAcquire(&space->regionMux);
if ((UINTPTR)alignAddr >= space->mapBase) {
VM_ERR("Process heap memory space is insufficient");
return (VOID *)-ENOMEM;
ret = (VOID *)-ENOMEM;
goto REGION_ALLOC_FAILED;
}
if (space->heapBase == space->heapNow) {
region = LOS_RegionAlloc(space, space->heapBase, size,