Module: wine Branch: master Commit: d93b6c0aa2b90f85fb2fd21417bdf60bab9ec7ac URL: http://source.winehq.org/git/wine.git/?a=commit;h=d93b6c0aa2b90f85fb2fd21417...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Thu Mar 31 20:21:17 2011 +0200
dbghelp: Add a return statement for the default/assert case in elf_map_file.
---
dlls/dbghelp/elf_module.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c index 4ea27f6..8d06065 100644 --- a/dlls/dbghelp/elf_module.c +++ b/dlls/dbghelp/elf_module.c @@ -294,6 +294,7 @@ static BOOL elf_map_file(struct elf_map_file_data* emfd, struct image_file_map* filename = NULL; break; default: assert(0); + return FALSE; }
elf_reset_file_map(fmap);