find_java2: Fix deallocation bug

Since 'fviBuffer' was allocated with an array new, it needs to
be deallocated with an array delete.

Change-Id: I0a96ec78b0d230f64566ad16df0a58c9cdc7e043
diff --git a/find_java2/src/utils.cpp b/find_java2/src/utils.cpp
index 9a9e3d2..7f4aa02 100755
--- a/find_java2/src/utils.cpp
+++ b/find_java2/src/utils.cpp
@@ -77,7 +77,7 @@
             }

         }

     }

-    delete fviBuffer;

+    delete[] fviBuffer;

 }

 

 CString getAppName() {