mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-25 21:47:46 +00:00
Formerly implicit.c.~12~
This commit is contained in:
parent
e12d722d99
commit
54fb272967
1 changed files with 8 additions and 1 deletions
|
@ -513,7 +513,14 @@ pattern_search (file, archive, depth, recursions)
|
|||
if (recursions == 0)
|
||||
{
|
||||
dep->name = 0;
|
||||
dep->file = enter_file (s);
|
||||
dep->file = lookup_file (s);
|
||||
if (dep->file == 0)
|
||||
/* enter_file consumes S's storage. */
|
||||
dep->file = enter_file (s);
|
||||
else
|
||||
/* A copy of S is already allocated in DEP->file->name.
|
||||
So we can free S. */
|
||||
free (s);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue