changeset 14439:04fb823d2094 jdk8u302-b02

8129511: PlatformMidi.c:83 uses malloc without malloc header Reviewed-by: ant, azvegint
author serb
date Fri, 10 Jul 2015 16:15:21 +0300
parents 63742c643c8a
children d29bb160b027 ab6bdab85291
files src/share/native/com/sun/media/sound/PlatformMidi.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/native/com/sun/media/sound/PlatformMidi.c	Mon Feb 24 11:24:43 2014 -0800
+++ b/src/share/native/com/sun/media/sound/PlatformMidi.c	Fri Jul 10 16:15:21 2015 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -29,6 +29,8 @@
 
 #include "PlatformMidi.h"
 
+#include <stdlib.h>
+
 char* GetInternalErrorStr(INT32 err) {
     switch (err) {
     case MIDI_SUCCESS:          return "";