8129511: PlatformMidi.c:83 uses malloc without malloc header

Reviewed-by: ant, azvegint
This commit is contained in:
Sergey Bylokhov 2015-07-10 16:15:21 +03:00
parent 318513bcf7
commit 45f00a6646

View File

@ -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 "";