~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to dlls/oleaut32/vartype.c

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
3764
3764
 */
3765
3765
HRESULT WINAPI VarCyFromUI8(ULONG64 ullIn, CY* pCyOut)
3766
3766
{
3767
 
    if (ullIn >= (I8_MAX/CY_MULTIPLIER)) return DISP_E_OVERFLOW;
 
3767
    if (ullIn > (I8_MAX/CY_MULTIPLIER)) return DISP_E_OVERFLOW;
3768
3768
    pCyOut->int64 = ullIn * CY_MULTIPLIER;
3769
3769
    return S_OK;
3770
3770
}
6408
6408
  {
6409
6409
    WCHAR *p;
6410
6410
    WCHAR numbuff[256];
6411
 
    WCHAR empty[1] = {'\0'};
 
6411
    WCHAR empty[] = {'\0'};
6412
6412
    NUMBERFMTW minFormat;
6413
6413
 
6414
6414
    minFormat.NumDigits = 0;