Index: src/wp-includes/ms-blogs.php
===================================================================
--- src/wp-includes/ms-blogs.php	(revision 29664)
+++ src/wp-includes/ms-blogs.php	(working copy)
@@ -917,7 +917,9 @@
  * @param int $post_id Post ID.
  */
 function _update_posts_count_on_delete( $post_id ) {
-	if ( 'publish' !== get_post_field( 'post_status', $post_id ) ) {
+	$post = get_post( $post_id );
+
+	if ( 'publish' !== $post->post_status ) {
 		return;
 	}
 
