msi/record.c add missing break

Aric Stewart aric at codeweavers.com
Tue Aug 24 14:54:39 CDT 2004


getting the string for a null field should not create an error. add a 
missing break
-------------- next part --------------
Index: dlls/msi/record.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/record.c,v
retrieving revision 1.14
diff -u -w -r1.14 record.c
--- dlls/msi/record.c	11 Aug 2004 19:43:46 -0000	1.14
+++ dlls/msi/record.c	24 Aug 2004 19:54:15 -0000
@@ -294,6 +294,7 @@
         len = 1;
         if( *pcchValue > 0 )
             szValue[0] = 0;
+        break;
     default:
         ret = ERROR_INVALID_PARAMETER;
         break;


More information about the wine-patches mailing list