mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-28 11:55:03 +03:00 
			
		
		
		
	Replace many MemSet calls with struct initialization
This replaces all MemSet() calls with struct initialization where that is easily and obviously possible. (For example, some cases have to worry about padding bits, so I left those.) (The same could be done with appropriate memset() calls, but this patch is part of an effort to phase out MemSet(), so it doesn't touch memset() calls.) Reviewed-by: Ranier Vilela <ranier.vf@gmail.com> Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org> Discussion: https://www.postgresql.org/message-id/9847b13c-b785-f4e2-75c3-12ec77a3b05c@enterprisedb.com
This commit is contained in:
		| @@ -1310,14 +1310,11 @@ pg_event_trigger_dropped_objects(PG_FUNCTION_ARGS) | ||||
| 	{ | ||||
| 		SQLDropObject *obj; | ||||
| 		int			i = 0; | ||||
| 		Datum		values[12]; | ||||
| 		bool		nulls[12]; | ||||
| 		Datum		values[12] = {0}; | ||||
| 		bool		nulls[12] = {0}; | ||||
|  | ||||
| 		obj = slist_container(SQLDropObject, next, iter.cur); | ||||
|  | ||||
| 		MemSet(values, 0, sizeof(values)); | ||||
| 		MemSet(nulls, 0, sizeof(nulls)); | ||||
|  | ||||
| 		/* classid */ | ||||
| 		values[i++] = ObjectIdGetDatum(obj->address.classId); | ||||
|  | ||||
| @@ -1840,7 +1837,7 @@ pg_event_trigger_ddl_commands(PG_FUNCTION_ARGS) | ||||
| 	{ | ||||
| 		CollectedCommand *cmd = lfirst(lc); | ||||
| 		Datum		values[9]; | ||||
| 		bool		nulls[9]; | ||||
| 		bool		nulls[9] = {0}; | ||||
| 		ObjectAddress addr; | ||||
| 		int			i = 0; | ||||
|  | ||||
| @@ -1858,8 +1855,6 @@ pg_event_trigger_ddl_commands(PG_FUNCTION_ARGS) | ||||
| 			!OidIsValid(cmd->d.simple.address.objectId)) | ||||
| 			continue; | ||||
|  | ||||
| 		MemSet(nulls, 0, sizeof(nulls)); | ||||
|  | ||||
| 		switch (cmd->type) | ||||
| 		{ | ||||
| 			case SCT_Simple: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user