git-svn-id: svn://db.shs.com.ru/pip@758 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2019-02-19 09:10:12 +00:00
parent dd1079bcef
commit 84a584c682
5 changed files with 42 additions and 40 deletions

View File

@@ -464,8 +464,8 @@ bool PIObject::findSuitableMethodV(const PIString & method, int args, int & ret_
PIVector<PIObject * > & PIObject::objects() {
static PIVector<PIObject * > ret;
return ret;
static PIVector<PIObject * > * ret = new PIVector<PIObject * >();
return *ret;
}