Commit 50e2c62a authored by Alexandre Julliard's avatar Alexandre Julliard

server: Initialize the object permanent flag.

parent ab9ded06
......@@ -189,6 +189,7 @@ void *alloc_object( const struct object_ops *ops )
{
obj->refcount = 1;
obj->handle_count = 0;
obj->is_permanent = 0;
obj->ops = ops;
obj->name = NULL;
obj->sd = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment