Skip to content

Commit ad2e0c4

Browse files
committedAug 24, 2022
8292778: EncodingSupport_md.c convertUtf8ToPlatformString wrong placing of free
Reviewed-by: rriggs, kevinw, amenkov
1 parent 13c0369 commit ad2e0c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/java.instrument/windows/native/libinstrument/EncodingSupport_md.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -76,8 +76,8 @@ convertUtf8ToPlatformString(char* utf8_str, int utf8_len, char* platform_str, in
7676
if (plen >= 0) {
7777
platform_str[plen] = '\0';
7878
}
79-
free(wstr);
8079
}
80+
free(wstr);
8181
}
8282
}
8383
return plen;

0 commit comments

Comments
 (0)
Please sign in to comment.