* The ref_count member should definitely be initialized - thanks Stefano!

* This might fix bug #2894.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28277 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-10-22 09:04:41 +00:00
parent 6dee6b8c17
commit ab869c3c27

View File

@ -15,6 +15,8 @@
struct PathList::path_entry {
path_entry(const char* _path)
:
ref_count(0)
{
path = strdup(_path);
}