Commit 3270c0cb authored by Summer Stapleton's avatar Summer Stapleton
Browse files

Commenting-out line in ImportImagesWorkOrder.cpp to temporarily fix segfault of astrovm4

parent 653d5964
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -531,10 +531,12 @@ namespace Isis {

          if (cube) {

            Camera *camera = cube->camera();
            project()->addCamera(camera);
            Target *target = camera->target();
            project()->addTarget(target);
            // Commenting these out as a quick and dirty fix to segfault related to threading on
            // astrovm4 until it can be handled properly. -Summer
            //Camera *camera = cube->camera();
            //project()->addCamera(camera);
            //Target *target = camera->target();
            //project()->addTarget(target);

            // Create a new image from the result in the thread spawned in WorkOrder::redo().
            Image *newImage = new Image(cube);