metrica
Мы используем куки, чтобы пользоваться сайтом было удобно.
Хорошо
to the top
close form

Заполните форму в два простых шага ниже:

Ваши контактные данные:

Шаг 1
Поздравляем! У вас есть промокод!

Тип желаемой лицензии:

Шаг 2
Team license
Enterprise license
** Нажимая на кнопку, вы даете согласие на обработку
своих персональных данных. См. Политику конфиденциальности
close form
Запросите информацию о ценах
Новая лицензия
Продление лицензии
--Выберите валюту--
USD
EUR
RUB
* Нажимая на кнопку, вы даете согласие на обработку
своих персональных данных. См. Политику конфиденциальности

close form
Бесплатная лицензия PVS‑Studio для специалистов Microsoft MVP
* Нажимая на кнопку, вы даете согласие на обработку
своих персональных данных. См. Политику конфиденциальности

close form
Для получения лицензии для вашего открытого
проекта заполните, пожалуйста, эту форму
* Нажимая на кнопку, вы даете согласие на обработку
своих персональных данных. См. Политику конфиденциальности

close form
Мне интересно попробовать плагин на:
* Нажимая на кнопку, вы даете согласие на обработку
своих персональных данных. См. Политику конфиденциальности

close form
check circle
Ваше сообщение отправлено.

Мы ответим вам на


Если вы так и не получили ответ, пожалуйста, проверьте папку
Spam/Junk и нажмите на письме кнопку "Не спам".
Так Вы не пропустите ответы от нашей команды.

Вебинар: Трудности при интеграции SAST, как с ними справляться - 04.04

>
>
>
Примеры ошибок, обнаруженных с помощью …

Примеры ошибок, обнаруженных с помощью диагностики V513

V513. Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions.


Multi Theft Auto

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. cscreenshot.cpp 203


void CScreenShot::BeginSave (....)
{
  ....
  HANDLE hThread = CreateThread (
    NULL,
    0,
    (LPTHREAD_START_ROUTINE)CScreenShot::ThreadProc,
    NULL,
    CREATE_SUSPENDED,
    NULL );
  ....
}

Similar errors can be found in some other places:

  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. cservercache.cpp 208
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. cthread.cpp 46
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. cserveridmanager.cpp 199
  • And 3 additional diagnostic messages.

Trans-Proteomic Pipeline

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. interprophet.cxx 2479


double InterProphet::getNSPCounts() {
  ....
#ifdef MSVC
  pHandle[a] = CreateThread(NULL,0,NSPThread,
                            (void*) &data[a],0, NULL);
#else
  pthread_create(&pThreads[a],NULL,NSPThread,
                 (void*) &data[a]);
#endif
  ....
}

Similar errors can be found in some other places:

  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. interprophet.cxx 83
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. interprophet.cxx 122
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. interprophet.cxx 159
  • And 6 additional diagnostic messages.

SeqAn

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. system_thread.h 75


inline bool open(BOOL initital = false) {
  return hThread = CreateThread(
    &ThreadDefaultAttributes,  // default security attributes
    0,                         // use default stack size
    &_start,                   // thread function
    this,                      // argument to thread function
    0,                         // use default creation flags
    &hThreadID);               // returns the thread identifier
}

Snes9x

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. cwindow.cpp 745


bool THREADCLASS::createThread()
{
  if (hThread) return false;

  hThread = CreateThread(NULL, 0,
    (LPTHREAD_START_ROUTINE)ThreadProc, this, 0, &threadID);
  if (!hThread) return false;
  //WaitForSingleObject(hThread, INFINITE);
  return true;
}

Similar errors can be found in some other places:

  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. luaconsole.cpp 143

PostgreSQL Database Management System

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. postgres signal.c 89


void
pgwin32_signal_initialize(void)
{
  ....
  signal_thread_handle = CreateThread(NULL, 0,
    pg_signal_thread, NULL, 0, NULL);
  ....
}

Similar errors can be found in some other places:

  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. postgres signal.c 312
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. postgres timer.c 105
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. pg_dump pg_backup_utils.c 122
  • And 7 additional diagnostic messages.

Source Engine SDK

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. Vbsp threads.cpp 192


void RunThreads_Start(....)
{
  ....
  g_ThreadHandles[i] = CreateThread(
     NULL,
     0,
     InternalRunThreadsFn,
     &g_RunThreadsData[i],
     0,
     &dwDummy );
  ....
}

Similar errors can be found in some other places:

  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. Vrad_dll mpi_stats.cpp 633
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. Vrad_dll mysqldatabase.cpp 63
  • V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. Vvis_dll mpivis.cpp 586

Tesseract

V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. libtesseract303 svutil.cpp 191


void SVSync::StartThread(void *(*func)(void*), void* arg) {
#ifdef _WIN32
  LPTHREAD_START_ROUTINE f = (LPTHREAD_START_ROUTINE) func;
  DWORD threadid;
  HANDLE newthread = CreateThread(
  NULL,          // default security attributes
  0,             // use default stack size
  f,             // thread function
  arg,           // argument to thread function
  0,             // use default creation flags
  &threadid);    // returns the thread identifier
#else
  pthread_t helper;
  pthread_create(&helper, NULL, func, arg);
#endif
}