char to String to char conversion

To resolve your problem, we'd need to see more of your code. How is newsString defined? Is it a char array with 85 or more elements? How is buffer defined?

String d = String(85);

This creates a String object, d, equal to the String object that contains a character representation of the value 85, not one that contains room for 85 characters.