c
// Replace the combined error checking with individual checks after each operation
70 	ret = set_memory_decrypted((unsigned long)
71 				vmbus_connection.monitor_pages[0], 1);
72 	if (ret) {
73 		goto cleanup;
74 	}
// ... [rest of the code] ...
76 	ret = set_memory_decrypted((unsigned long)
77 				vmbus_connection.monitor_pages[1], 1);
78 	if (ret) {
79 		goto cleanup;
80 	}
// ... [rest of the code] ...
