297 |
|
private void UpdateMemroyView() { this.UpdateMemroyView(this.CURRENT_TOP_ADDR); } |
298 |
|
private void UpdateMemroyView(uint address) |
299 |
|
{ |
300 |
+ |
bool SearchInProgress = false; |
301 |
+ |
if (this.AcceptedPlugin != null) { SearchInProgress = this.AcceptedPlugin.SearchInProgess; } |
302 |
+ |
if (SearchInProgress) return; |
303 |
|
try |
304 |
|
{ |
305 |
|
if (AcceptedProcess == null) { return; } |
337 |
|
byte t; |
338 |
|
if (!gmp.ReadMemory(current_real_address, out t)) { ascii_value = '?'; } |
339 |
|
gmp.CloseProvider(); |
340 |
< |
} |
340 |
> |
} |
341 |
|
builder.Append(ascii_value.ToString()); |
342 |
|
} |
343 |
|
builder.AppendLine(); |