Commit 4f5f2e8e authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcp90: Copy facetvec element pointer in copy ctor.

parent 650ccf59
......@@ -7798,8 +7798,11 @@ locale__Locimp* __thiscall locale__Locimp_copy_ctor(locale__Locimp *this, const
return NULL;
}
for(i=0; i<this->facet_cnt; i++)
{
this->facetvec[i] = copy->facetvec[i];
if(this->facetvec[i])
locale_facet__Incref(this->facetvec[i]);
}
}
MSVCP_basic_string_char_copy_ctor(&this->name, &copy->name);
_Lockit_dtor(&lock);
......
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