Skip to content

Commit

Permalink
Merge pull request #20836 from ThanHenderson/rmnullptr
Browse files Browse the repository at this point in the history
Replace nullptr with NULL in java_lang_invoke_MethodHandleNatives.cpp
  • Loading branch information
babsingh authored Dec 16, 2024
2 parents f6e6334 + 328fc42 commit 7c6a848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/jcl/common/java_lang_invoke_MethodHandleNatives.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ struct LocalJ9UTF8Buffer {
* Constructs an empty LocalJ9UTF8Buffer.
*/
LocalJ9UTF8Buffer()
: utf8(nullptr)
: utf8(NULL)
, capacity(0)
, cursor(nullptr)
, cursor(NULL)
{
}

Expand Down

0 comments on commit 7c6a848

Please sign in to comment.