From 59d5ee5e4215ae1746923e2fc954db867dc27187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Thu, 23 Aug 2012 13:54:58 +0000 Subject: [PATCH] Boost Jam cleanup - removed a stale comment - the referenced string gets freed as a part of the related hash table cleanup. [SVN r80158] --- v2/engine/timestamp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/engine/timestamp.c b/v2/engine/timestamp.c index fa8963e6b..69cc8d186 100644 --- a/v2/engine/timestamp.c +++ b/v2/engine/timestamp.c @@ -169,7 +169,7 @@ void timestamp_from_path( timestamp * const time, OBJECT * const path ) b = (BINDING *)hash_insert( bindhash, normalized_path, &found ); if ( !found ) { - b->name = object_copy( normalized_path ); /* never freed */ + b->name = object_copy( normalized_path ); b->flags = 0; b->progress = BIND_INIT; timestamp_clear( &b->time );