Camilla Berglund 9 yıl önce
ebeveyn
işleme
e77a76a284
3 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 1 1
      src/cocoa_monitor.m
  2. 1 1
      src/win32_init.c
  3. 1 1
      src/wl_monitor.c

+ 1 - 1
src/cocoa_monitor.m

@@ -66,7 +66,7 @@ static char* getDisplayName(CGDirectDisplayID displayID)
 
     size = CFStringGetMaximumSizeForEncoding(CFStringGetLength(value),
                                              kCFStringEncodingUTF8);
-    name = calloc(size + 1, sizeof(char));
+    name = calloc(size + 1, 1);
     CFStringGetCString(value, name, size, kCFStringEncodingUTF8);
 
     CFRelease(info);

+ 1 - 1
src/win32_init.c

@@ -377,7 +377,7 @@ char* _glfwCreateUTF8FromWideStringWin32(const WCHAR* source)
     if (!length)
         return NULL;
 
-    target = calloc(length, sizeof(char));
+    target = calloc(length, 1);
 
     if (!WideCharToMultiByte(CP_UTF8, 0, source, -1, target, length, NULL, NULL))
     {

+ 1 - 1
src/wl_monitor.c

@@ -120,7 +120,7 @@ void _glfwAddOutputWayland(uint32_t name, uint32_t version)
     struct wl_output *output;
     char name_str[80];
 
-    memset(name_str, 0, 80 * sizeof(char));
+    memset(name_str, 0, sizeof(name_str));
     snprintf(name_str, 79, "wl_output@%u", name);
 
     if (version < 2)