8331167: UBSan enabled build fails in adlc on macOS

Reviewed-by: stuefe, lucy
This commit is contained in:
Matthias Baesken 2024-04-29 07:58:18 +00:00
parent c615c18e9f
commit 4edac349a5

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -5225,7 +5225,7 @@ void ADLParser::skipws_common(bool do_preproc) {
if (*_ptr == '\n') { // keep proper track of new lines if (*_ptr == '\n') { // keep proper track of new lines
if (!do_preproc) break; // let caller handle the newline if (!do_preproc) break; // let caller handle the newline
next_line(); next_line();
_ptr = _curline; next = _ptr + 1; _ptr = _curline; if (_ptr != nullptr) next = _ptr + 1;
} }
else if ((*_ptr == '/') && (*next == '/')) // C++ comment else if ((*_ptr == '/') && (*next == '/')) // C++ comment
do { _ptr++; next++; } while(*_ptr != '\n'); // So go to end of line do { _ptr++; next++; } while(*_ptr != '\n'); // So go to end of line