tutorial1 crashes on Win10 but not on Win7 -- I compiled the program on Win10/VS 2015. The resulting executable runs fine on Win7 (using the binaries I built on Win7) but crashed against *both* those binaries, as well as the official project released binaries on Win10. I've attached a screenshot of the debug session. The fault is the same, regardless if compiled in Debug in VS, or just running a Release .exe from outside VS. Does anyone have any experience with crashes or differences in Win10 that I need to understand? Thanks!
<p><code>
        GstElement *pipeline;
        GstBus *bus;
        GstMessage *msg;

        /* Initialize GStreamer */
        gst_init(&argc, &argv);

        /* Build the pipeline */
        pipeline = gst_parse_launch("playbin uri=http://docs.gstreamer.com/media/sintel_trailer-480p.webm", NULL);

        /* Start playing */
        gst_element_set_state(pipeline, GST_STATE_PLAYING);
// CRASHES EXECUTING THE PREVIOUS LINE ^
        /* Wait until error or EOS */
        bus = gst_element_get_bus(pipeline);
</code><p>
<img src="http://gstreamer-devel.966125.n4.nabble.com/file/n4676741/tutorial1_crash.png" border="0" alt="tutorial 1 crash"/>

        
        
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://gstreamer-devel.966125.n4.nabble.com/tutorial1-crashes-on-Win10-but-not-Win7-tp4676741.html">tutorial1 crashes on Win10 but not Win7</a><br/>
Sent from the <a href="http://gstreamer-devel.966125.n4.nabble.com/">GStreamer-devel mailing list archive</a> at Nabble.com.<br/>