~ubuntu-branches/ubuntu/oneiric/gimp/oneiric-security

« back to all changes in this revision

Viewing changes to app/plug-in/gimppluginmanager.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2010-07-12 15:08:08 UTC
  • mfrom: (1.1.23) (0.4.6 sid)
  • Revision ID: package-import@ubuntu.com-20100712150808-db9xqgtxrvpyl3g2
Tags: 2.6.10-1ubuntu1
Resync on Debian, dropping changes which are in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
      manager->plug_in_defs = NULL;
202
202
    }
203
203
 
204
 
  if (manager->shm)
205
 
    {
206
 
      gimp_plug_in_shm_free (manager->shm);
207
 
      manager->shm = NULL;
208
 
    }
209
 
 
210
204
  if (manager->environ_table)
211
205
    {
212
206
      g_object_unref (manager->environ_table);
324
318
 
325
319
  while (manager->open_plug_ins)
326
320
    gimp_plug_in_close (manager->open_plug_ins->data, TRUE);
 
321
 
 
322
  /*  need to deatch from shared memory, we can't rely on exit()
 
323
   *  cleaning up behind us (see bug #609026)
 
324
   */
 
325
  if (manager->shm)
 
326
    {
 
327
      gimp_plug_in_shm_free (manager->shm);
 
328
      manager->shm = NULL;
 
329
    }
327
330
}
328
331
 
329
332
void