Wireshark

  • Riverbed Technology
  • WinPcap
the world's foremost network protocol analyzer
  • Wireshark
    • About
    • Download
    • Blog
  • Get Help
    • Ask a Question
    • FAQs
    • Documentation
    • Mailing Lists
    • Online Tools
    • Wiki
    • Bug Tracker
  • Develop
    • Get Involved
    • Developer's Guide
    • Browse the Code
    • Latest Builds

Wireshark-dev: [Wireshark-dev] Patch for packet-bacapp.c

Date Index Thread Index Other Months All Mailing Lists
Date Prev Date Next Thread Prev Thread Next


From: David Richards <drichards@xxxxxxxxxxxx>
Date: Fri, 03 Nov 2006 23:10:12 -0600

Here is a patch to fix a problem with notification parameters.  Fix is:

Remove premature return statements from fNotificationParameters.

The real problem is that the original code is inconsistent about putting a break in all cases of the switch blocks and some were falling through to the default case where there was a return. I took the simple route and removed the unnecessary returns - they were OK for default case but not for the fall through.

Is there a standard about having breaks? If it is desired to have a consistent coding style I will further update the code to conform. Otherwise, could someone please commit this change as it does fix the bug?

Thanks,

Dave Richards

Index: packet-bacapp.c
===================================================================
--- packet-bacapp.c	(revision 19789)
+++ packet-bacapp.c	(working copy)
@@ -3021,7 +3021,6 @@
 					"status-flags: ", BACnetStatusFlags);
 				break;
 			default:
-				return offset;
 				break;
 			}
 		}
@@ -3185,7 +3184,6 @@
 				offset = fEnumeratedTagSplit (tvb, subtree, offset,
 					"operation-expected: ", BACnetLifeSafetyOperation, 64);
 			default:
-				return offset;
 				break;
 			}
 		}
  • Follow-Ups:
    • Re: [Wireshark-dev] Patch for packet-bacapp.c
      • From: ronnie sahlberg
  • Prev by Date: Re: [Wireshark-dev] contribution: OpenChange dissector for NSPI protocol
  • Next by Date: Re: [Wireshark-dev] Fix for bug #1156: Display filter "http" fails for http over ssl
  • Previous by thread: Re: [Wireshark-dev] RTP audio playback
  • Next by thread: Re: [Wireshark-dev] Patch for packet-bacapp.c
  • Index(es):
    • Date
    • Thread

Wireshark and the "fin" logo are registered trademarks of the Wireshark Foundation