Version Differences for Windows Mobile Code Signing

(Page needs to be updated with proper links and up-to-date info on Microsoft code-signing process)
Line 70:
       
  // create a byte array to read the contents    // create a byte array to read the contents 
- DWORD cbCert = GetFileSize(hFile, NULL);   + DWORD cbCert = GetFileSize(hFile, NULL);  
  DWORD cbRead = 0;    DWORD cbRead = 0; 
  BYTE *byteCert = (BYTE *)malloc(sizeof(BYTE) * cbCert);    BYTE *byteCert = (BYTE *)malloc(sizeof(BYTE) * cbCert); 
  ReadFile(hFile, (LPVOID)byteCert, cbCert, &cbRead, NULL);    ReadFile(hFile, (LPVOID)byteCert, cbCert, &cbRead, NULL); 
       
- CloseHandle(hFile);   + CloseHandle(hFile);  
       
  PCCERT_CONTEXT pCertCtx = CertCreateCertificateContext(    PCCERT_CONTEXT pCertCtx = CertCreateCertificateContext(