am a7161902: linker: fix overwriting the real linker error string

Merge commit 'a716190241da07f42cf874b04bf044261f36381c' into gingerbread-plus-aosp

* commit 'a716190241da07f42cf874b04bf044261f36381c':
  linker: fix overwriting the real linker error string
This commit is contained in:
Dima Zavin
2010-08-18 13:35:40 -07:00
committed by Android Git Automerger

View File

@@ -2040,7 +2040,7 @@ static int link_image(soinfo *si, unsigned wr_offset)
return 0; return 0;
fail: fail:
DL_ERR("failed to link %s\n", si->name); ERROR("failed to link %s\n", si->name);
si->flags |= FLAG_ERROR; si->flags |= FLAG_ERROR;
return -1; return -1;
} }