Commit b2e2e76b authored by Qt Forward Merge Bot's avatar Qt Forward Merge Bot
Browse files

Merge remote-tracking branch 'origin/5.11' into 5.12

Change-Id: I88b7094f8b625c14f2524576e73cf7fc3f807a1d
Showing with 2 additions and 0 deletions
......@@ -125,6 +125,8 @@ QByteArray QAndroidIntent::extraBytes(const QString &key)
QAndroidJniExceptionCleaner cleaner;
auto array = m_handle.callObjectMethod("getByteArrayExtra", "(Ljava/lang/String;)[B",
QAndroidJniObject::fromString(key).object());
if (!array.isValid() || !array.object())
return QByteArray();
QAndroidJniEnvironment env;
auto sz = env->GetArrayLength(jarray(array.object()));
QByteArray res(sz, Qt::Initialization::Uninitialized);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment