summary refs log tree commit diff stats
path: root/mailinglist/output_launchpad/1840648
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-05-30 14:51:13 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-05-30 14:51:13 +0000
commit225caa38269323af1bfc2daadff5ec8bd930747f (patch)
treee0a5fefde9ee100ba6f32fb36de6707490e4164e /mailinglist/output_launchpad/1840648
parent904141bfb8d5385b75eb3b7afec1dcda89af65a7 (diff)
downloademulator-bug-study-225caa38269323af1bfc2daadff5ec8bd930747f.tar.gz
emulator-bug-study-225caa38269323af1bfc2daadff5ec8bd930747f.zip
add mailinglist scraper results
Diffstat (limited to 'mailinglist/output_launchpad/1840648')
-rw-r--r--mailinglist/output_launchpad/184064817
1 files changed, 17 insertions, 0 deletions
diff --git a/mailinglist/output_launchpad/1840648 b/mailinglist/output_launchpad/1840648
new file mode 100644
index 00000000..6c56438a
--- /dev/null
+++ b/mailinglist/output_launchpad/1840648
@@ -0,0 +1,17 @@
+qemu-4.1.0/roms/edk2/MdeModulePkg/Universal/Disk/UdfDxe/FileName.c:161: logical fault ?
+
+qemu-4.1.0/roms/edk2/MdeModulePkg/Universal/Disk/UdfDxe/FileName.c:161:71: warning: Logical disjunction always evaluates to true: EXPR != '\\' || EXPR != '\0'. [incorrectLogicOperator]
+
+Source code is
+
+       if ((*(FileName - 1) != L'\\') && ((*(FileName + 2) != L'\\') ||
+                                           (*(FileName + 2) != L'\0'))) {
+
+Maybe better code:
+
+       if ((*(FileName - 1) != L'\\') && ((*(FileName + 2) != L'\\') &&
+                                           (*(FileName + 2) != L'\0'))) {
+
+This isn't QEMU code -- it's just the source for third-party ROMs that we ship with QEMU because we also ship the ROM binaries. Please report it to the upstream project.
+
+