Fixed a memory leak (room.object_path)

This commit is contained in:
Dan A. Muresan 2011-05-14 15:55:57 +03:00
parent 9bf795905f
commit 449b309cb6
1 changed files with 1 additions and 0 deletions

View File

@ -410,6 +410,7 @@ void ladish_room_destroy(ladish_room_handle room_handle)
ladish_graph_destroy(room_ptr->graph);
free(room_ptr->name);
free(room_ptr->object_path);
free(room_ptr);
}