25 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| 
								 | 
							
								diff -up chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor.h.me chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor.h
							 | 
						||
| 
								 | 
							
								--- chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor.h.me	2024-02-06 08:22:36.013021582 +0100
							 | 
						||
| 
								 | 
							
								+++ chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor.h	2024-02-06 08:23:08.281607499 +0100
							 | 
						||
| 
								 | 
							
								@@ -77,7 +77,7 @@ class XSLTProcessor final : public Scrip
							 | 
						||
| 
								 | 
							
								 
							 | 
						||
| 
								 | 
							
								   void reset();
							 | 
						||
| 
								 | 
							
								 
							 | 
						||
| 
								 | 
							
								-  static void ParseErrorFunc(void* user_data, const xmlError*);
							 | 
						||
| 
								 | 
							
								+  static void ParseErrorFunc(void* user_data, xmlError*);
							 | 
						||
| 
								 | 
							
								   static void GenericErrorFunc(void* user_data, const char* msg, ...);
							 | 
						||
| 
								 | 
							
								 
							 | 
						||
| 
								 | 
							
								   // Only for libXSLT callbacks
							 | 
						||
| 
								 | 
							
								diff -up chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor_libxslt.cc.me chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor_libxslt.cc
							 | 
						||
| 
								 | 
							
								--- chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor_libxslt.cc.me	2024-02-06 08:14:32.368066214 +0100
							 | 
						||
| 
								 | 
							
								+++ chromium-121.0.6167.139/third_party/blink/renderer/core/xml/xslt_processor_libxslt.cc	2024-02-06 08:23:08.282607518 +0100
							 | 
						||
| 
								 | 
							
								@@ -66,7 +66,7 @@ void XSLTProcessor::GenericErrorFunc(voi
							 | 
						||
| 
								 | 
							
								   // It would be nice to do something with this error message.
							 | 
						||
| 
								 | 
							
								 }
							 | 
						||
| 
								 | 
							
								 
							 | 
						||
| 
								 | 
							
								-void XSLTProcessor::ParseErrorFunc(void* user_data, const xmlError* error) {
							 | 
						||
| 
								 | 
							
								+void XSLTProcessor::ParseErrorFunc(void* user_data, xmlError* error) {
							 | 
						||
| 
								 | 
							
								   FrameConsole* console = static_cast<FrameConsole*>(user_data);
							 | 
						||
| 
								 | 
							
								   if (!console)
							 | 
						||
| 
								 | 
							
								     return;
							 |