Returning the default instead of abort() to unblock fuzzer.

Bug: 243463593
Test: No manual testing, fuzzer would conduct the test.
Change-Id: Iffcc6181fe95edd547d0919f648f4f0e6b305a73
diff --git a/media/mtp/MtpPacket.cpp b/media/mtp/MtpPacket.cpp
index 03dfa7f..f196d87 100644
--- a/media/mtp/MtpPacket.cpp
+++ b/media/mtp/MtpPacket.cpp
@@ -97,7 +97,7 @@
     }
     else {
         ALOGE("offset for buffer read is greater than buffer size!");
-        abort();
+        return 0;
     }
 }
 
@@ -108,7 +108,7 @@
     }
     else {
         ALOGE("offset for buffer read is greater than buffer size!");
-        abort();
+        return 0;
     }
 }