Преглед изворни кода

Use static buffer. No leak now.

Steve Thielemann пре 5 година
родитељ
комит
80d87ab6cb
1 измењених фајлова са 2 додато и 10 уклоњено
  1. 2 10
      ODPrntf.c

+ 2 - 10
ODPrntf.c

@@ -71,7 +71,7 @@
 ODAPIDEF void ODVCALL od_printf(const char *pszFormat,...)
 ODAPIDEF void ODVCALL od_printf(const char *pszFormat,...)
 {
 {
    va_list pArgumentList;
    va_list pArgumentList;
-   static char *pszWorkBuffer = NULL;
+   static char pszWorkBuffer[WORK_BUFFER_SIZE];
    char *pchCurrent;
    char *pchCurrent;
    char *pchStart;
    char *pchStart;
    BOOL bNotFound;
    BOOL bNotFound;
@@ -85,15 +85,7 @@ ODAPIDEF void ODVCALL od_printf(const char *pszFormat,...)
 
 
    OD_API_ENTRY();
    OD_API_ENTRY();
 
 
-   /* Allocate work buffer if none has been allocated yet. */
-   if(pszWorkBuffer == NULL &&
-      (pszWorkBuffer = malloc(WORK_BUFFER_SIZE)) == NULL)
-   {
-      /* If we are unable to allocate a buffer, return with a memory error. */
-      od_control.od_error = ERR_MEMORY;
-      OD_API_EXIT();
-      return;
-   }
+   /* Use static work buffer. */
 
 
    /* Copy the arguments after the format string. */
    /* Copy the arguments after the format string. */
    va_start(pArgumentList, pszFormat);
    va_start(pArgumentList, pszFormat);