Fixed a bug in graph.Graph.Get()

This commit is contained in:
Solomon Hykes 2013-03-21 00:21:32 -07:00
Родитель 89a140fb75
Коммит 84e8c4aa1d
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,7 @@ func (graph *Graph) Get(id string) (*Image, error) {
if img.Id != id {
return nil, fmt.Errorf("Image stored at '%s' has wrong id '%s'", id, img.Id)
}
img.graph = graph
return img, nil
}