mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Remove unnecessary initialization of local variables.
Oops, forgot these in the prveious commit.
This commit is contained in:
		@@ -307,8 +307,8 @@ check_locale_and_encoding(DbInfo *olddb, DbInfo *newdb)
 | 
				
			|||||||
static bool
 | 
					static bool
 | 
				
			||||||
equivalent_locale(int category, const char *loca, const char *locb)
 | 
					equivalent_locale(int category, const char *loca, const char *locb)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	const char *chara = strrchr(loca, '.');
 | 
						const char *chara;
 | 
				
			||||||
	const char *charb = strrchr(locb, '.');
 | 
						const char *charb;
 | 
				
			||||||
	char	   *canona;
 | 
						char	   *canona;
 | 
				
			||||||
	char	   *canonb;
 | 
						char	   *canonb;
 | 
				
			||||||
	int			lena;
 | 
						int			lena;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user