*** empty log message ***

svn path=/trunk/boinc/; revision=1553
This commit is contained in:
Eric Heien 2003-06-19 22:58:29 +00:00
parent ddd7af2752
commit 88ca0c853c
1 changed files with 2 additions and 2 deletions

View File

@ -528,13 +528,13 @@ void setup_shared_mem(void) {
void cleanup_shared_mem(void) {
#ifdef _WIN32
if (app_client_shm != NULL)
if (app_client_shm->shm != NULL)
detach_shmem(hSharedMem, app_client_shm->shm);
#endif
#ifdef HAVE_SYS_SHM_H
#ifdef HAVE_SYS_IPC_H
if (app_client_shm != NULL)
if (app_client_shm->shm != NULL)
detach_shmem(app_client_shm->shm);
#endif
#endif