Bug 151722: addr is in shared memory and is modified by another process, so

it needs to be declared volatile.
This commit is contained in:
wtc%netscape.com 2002-06-14 05:25:52 +00:00
Родитель d3d6e929f1
Коммит e272d04caa
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -171,7 +171,7 @@ static void ServerOne( void )
PRFileMap *fm;
PRStatus rc;
PRIntn i;
char *addr;
volatile char *addr;
char fmString[256];
char envBuf[256];
char *child_argv[8];