Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
timob-9205: added outofmemory check.
  • Loading branch information
hieupham007 committed May 23, 2012
1 parent 11449d7 commit a383945
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -568,6 +568,8 @@ public String getResponseText()
responseText = b.toString();
} catch (Exception e) {
Log.e(LCAT, "Unable to decode using charset: " + charset);
} catch (OutOfMemoryError e) {
Log.e(LCAT, "Unable to get response text: out of memory");
}

}
Expand Down

0 comments on commit a383945

Please sign in to comment.