svn commit: r277133 - head/contrib/elftoolchain/libdwarf

Ed Maste emaste at FreeBSD.org
Tue Jan 13 15:18:55 UTC 2015


Author: emaste
Date: Tue Jan 13 15:18:54 2015
New Revision: 277133
URL: https://svnweb.freebsd.org/changeset/base/277133

Log:
  libdwarf: add missing break
  
  Reported by:	Coverity
  CID:		1193315
  MFC after:	1 week
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/elftoolchain/libdwarf/dwarf_attrval.c

Modified: head/contrib/elftoolchain/libdwarf/dwarf_attrval.c
==============================================================================
--- head/contrib/elftoolchain/libdwarf/dwarf_attrval.c	Tue Jan 13 15:04:28 2015	(r277132)
+++ head/contrib/elftoolchain/libdwarf/dwarf_attrval.c	Tue Jan 13 15:18:54 2015	(r277133)
@@ -125,6 +125,7 @@ dwarf_attrval_signed(Dwarf_Die die, Dwar
 		break;
 	case DW_FORM_data4:
 		*valp = (int32_t) at->u[0].s64;
+		break;
 	case DW_FORM_data8:
 	case DW_FORM_sdata:
 		*valp = at->u[0].s64;


More information about the svn-src-all mailing list