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

This commit is contained in:
2016-08-15 09:03:31 +00:00
parent 4febbcddfe
commit acb2e04472
4 changed files with 15 additions and 12 deletions

View File

@@ -88,13 +88,13 @@ int PIProcess::currentPID() {
PIStringList PIProcess::currentEnvironment() {
PIStringList l;
int i = 0;
while (environ[i] != 0) {
l << environ[i];
++i;
}
return l;
PIStringList l;
int i = 0;
while (environ[i] != 0) {
l << environ[i];
++i;
}
return l;
}