WebCore/bridge uses bzero. Android's stdlib.h will soon be modified to not include strings.h, in order to reduce pollution of the standard C namespace. Without strings.h being included from stdlib.h, use of bzero would require additional local includes on Android. Rather than add includes, we should replace calls to bzero with memset, as this is what is used throughout WebCore common code.
Created attachment 50893 [details] Patch
Comment on attachment 50893 [details] Patch Looks like a no-op and consistency is good. r=me
Committed r56105: <http://trac.webkit.org/changeset/56105>