We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d0881 commit ded79afCopy full SHA for ded79af
scripts/gdb/linux/symbols.py
@@ -82,7 +82,7 @@ def _update_module_files(self):
82
self.module_files_updated = True
83
84
def _get_module_file(self, module_name):
85
- module_pattern = ".*/{0}\.ko(?:.debug)?$".format(
+ module_pattern = r".*/{0}\.ko(?:.debug)?$".format(
86
module_name.replace("_", r"[_\-]"))
87
for name in self.module_files:
88
if re.match(module_pattern, name) and os.path.exists(name):
0 commit comments