What are you doing to create this file?
It ends up as an 11.8MB file -- where almost all of that is declarations of an inlet/outlet flow subsurface for a WaveDrag calculation. Literally 460,000+ lines of this crap.
When VSP reads that file in, it triggers an O(n^2) algorithm, where n is that number of lines divided by 3 -- so n=155,520 -- which is effectively an infinite loop.
However you created this file is a huge problem -- either in your process, or a bug in OpenVSP. Please let me know what you're doing to make this mess.
Now for the reason that XSec is squished....
That cross section is built with an 'Edit_Curve' XSec -- by moving Bezier control points directly. However, its Width is set to 0.02892 (and height 2.633).
This happened because you turned on the 'View Abs' button on just that XSec. That means that you're editing the control points in absolute coordinates -- but they are stored with X/W relative to the width.
When the conformal section is calculated, it is done in the non-dimensional frame, and having a nearly zero W is messing things up.
So, you need to turn off 'View Abs' on that section. Then set the Width to a reasonable value, then, go through and scale all of the X coords of those control points down by the ratio you changed W.
Rob