Projects STRLCPY obfus.h Commits 13b954dd
🤬
  • ■ ■ ■ ■ ■
    include/obfus.h
    skipped 662 lines
    663 663  })(__VA_ARGS__))
    664 664  */
    665 665   
    666  -int vsprintf_Proxy(char *str, const char *format, va_list args) { return vsprintf(str, format, args); }
     666 +int vsprintf_Proxy(char *str, const char *format, va_list args) {
     667 + BREAK_STACK;
     668 + return vsprintf(str, format, args);
     669 +}
    667 670  #define vsprintf(str, format, args) vsprintf_Proxy(str, format, args)
    668 671   
    669  -int vsnprintf_Proxy(char *str, size_t size, const char *format, va_list args) { return vsnprintf(str, size, format, args); }
     672 +int vsnprintf_Proxy(char *str, size_t size, const char *format, va_list args) {
     673 + BREAK_STACK;
     674 + return vsnprintf(str, size, format, args);
     675 +}
    670 676  #define vsnprintf(str, size, format, args) vsnprintf_Proxy(str, size, format, args)
    671 677   
    672 678  char *getenv_Proxy(const char *name) {
    skipped 199 lines
Please wait...
Page is in error, reload to recover