线程本地存储中的异常处理程序错误代码

时间:2017-01-11 10:00:36

标签: c++ c visual-c++ visual-studio-2015

在线程本地存储中使用 wprintf 时出现异常处理程序错误,但我在Main EntryPoint中没有问题,我注意到当运行时库设置为 / MT 或 / MTd ,请看截图,解决方案是什么?
IDE:Visual Studio 2015,操作系统:Win10 64位

Sample Project

var $elements = $("#masterdiv").find('.a');
// Convert to native Array
var elements = Array.prototype.slice.apply($elements);

var t = setInterval(function () {

  elements.slice(points.f,points.l).forEach(function(el){ 

      // do something on the element... 
      $(el).addClass('debug');

   });
  elements.push(elements.shift()); // Re-arrange elements array for loop

}, xinterval );

enter image description here

CallStack

0 个答案:

没有答案