Line 1... |
Line 1... |
/* Generic BFD support for file formats.
|
/* Generic BFD support for file formats.
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
|
2003, 2005, 2007, 2008 Free Software Foundation, Inc.
|
2003, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
|
Written by Cygnus Support.
|
Written by Cygnus Support.
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
Line 147... |
Line 147... |
if (matching != NULL || *bfd_associated_vector != NULL)
|
if (matching != NULL || *bfd_associated_vector != NULL)
|
{
|
{
|
bfd_size_type amt;
|
bfd_size_type amt;
|
|
|
amt = sizeof (*matching_vector) * 2 * _bfd_target_vector_entries;
|
amt = sizeof (*matching_vector) * 2 * _bfd_target_vector_entries;
|
matching_vector = bfd_malloc (amt);
|
matching_vector = (const bfd_target **) bfd_malloc (amt);
|
if (!matching_vector)
|
if (!matching_vector)
|
return FALSE;
|
return FALSE;
|
}
|
}
|
|
|
right_targ = 0;
|
right_targ = 0;
|