mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-29 05:38:48 +08:00
Merge remote-tracking branch 'origin/GP-0_d-millar_lldb_NPE' into patch
(Closes #7488, Closes #7489)
This commit is contained in:
@@ -1,17 +1,17 @@
|
|||||||
## ###
|
## ###
|
||||||
# IP: GHIDRA
|
# IP: GHIDRA
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
# You may obtain a copy of the License at
|
# You may obtain a copy of the License at
|
||||||
#
|
#
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
#
|
#
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
##
|
##
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
import os
|
import os
|
||||||
@@ -253,6 +253,8 @@ def escape_ansi(line):
|
|||||||
|
|
||||||
def debracket(init):
|
def debracket(init):
|
||||||
val = init
|
val = init
|
||||||
|
if init is None:
|
||||||
|
return ""
|
||||||
val = val.replace("[", "(")
|
val = val.replace("[", "(")
|
||||||
val = val.replace("]", ")")
|
val = val.replace("]", ")")
|
||||||
return val
|
return val
|
||||||
|
|||||||
Reference in New Issue
Block a user