From dca4c0230a00552f49e84f39bb5150bbd0f0e41a Mon Sep 17 00:00:00 2001 From: Michael Carpenter Date: Mon, 17 Mar 2014 07:50:38 -0400 Subject: [PATCH] Fix for a crash in interrogation, due to not returning a value in a function requiring a return --- plugins/freeems/emsdata.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/freeems/emsdata.cpp b/plugins/freeems/emsdata.cpp index c5540a0..5a993ba 100644 --- a/plugins/freeems/emsdata.cpp +++ b/plugins/freeems/emsdata.cpp @@ -982,4 +982,5 @@ MemoryLocation* EmsData::getLocalRamBlockInfo(unsigned short locationid) return m_ramMemoryList[i]; } } + return 0; }