(add_dependency): Set DF_1_NODELETE bit in l_flags_1, not in l_flags.

This commit is contained in:
Ulrich Drepper 2004-05-26 04:18:34 +00:00
parent b84515a12f
commit a752d0cc54

View File

@ -108,7 +108,7 @@ add_dependency (struct link_map *undef_map, struct link_map *map)
|| (undef_map->l_flags_1 & DF_1_NODELETE) != 0)
{
++map->l_opencount;
map->l_flags |= DF_1_NODELETE;
map->l_flags_1 |= DF_1_NODELETE;
goto out;
}