Prechádzať zdrojové kódy

Make work buffer larger and use vsnprintf instead

Andrew Pamment 6 rokov pred
rodič
commit
081ee51a25
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      ODPrntf.c

+ 2 - 2
ODPrntf.c

@@ -51,7 +51,7 @@
 
 /* Size of od_printf() working buffer. Adjust this upwards if you are    */
 /* encountering difficulties when calling od_printf() with long strings. */
-#define WORK_BUFFER_SIZE   512
+#define WORK_BUFFER_SIZE   2048
 
 
 /* ----------------------------------------------------------------------------
@@ -99,7 +99,7 @@ ODAPIDEF void ODVCALL od_printf(const char *pszFormat,...)
    va_start(pArgumentList, pszFormat);
 
    /* Perform a string printf to the working buffer. */
-   vsprintf(pszWorkBuffer, pszFormat, pArgumentList);
+   vsnprintf(pszWorkBuffer, WORK_BUFFER_SIZE, pszFormat, pArgumentList);
 
    va_end(pArgumentList);