2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 22:35:25 +00:00

When complaining about freeing unknown memory, use the name of the caller.

This commit is contained in:
Ted Lemon
2000-01-26 17:25:24 +00:00
parent 032aca19ea
commit 46c38f9c5b

View File

@@ -122,7 +122,7 @@ void dfree (ptr, file, line)
break;
if (!dp) {
log_error ("%s(%d): freeing unknown memory: %lx",
dp -> file, dp -> line, (unsigned long)cur);
file, line, (unsigned long)cur);
abort ();
}
if (dp -> prev)