~ubuntu-branches/ubuntu/saucy/wine1.4/saucy-proposed

« back to all changes in this revision

Viewing changes to dlls/d3dxof/parsing.c

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-03-04 19:51:50 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120304195150-2lmdcr1d09y4xnqf
Tags: 1.4~rc6-0ubuntu1
* New upstream release
  - Bug fixes only, we are in code freeze.
* debian/control: 
  - explicitly depend on libncurses5 (LP: #938310)
  - bump breaks/replaces to packages before rc6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1315
1315
      }
1316
1316
    }
1317
1317
 
1318
 
    if (buf->txt && (check_TOKEN(buf) != TOKEN_CBRACE) && (check_TOKEN(buf) != TOKEN_NAME))
 
1318
    /* Empty arrays can have the semicolon at the end or not so remove it if any and skip next check */
 
1319
    if (!nb_elems && (check_TOKEN(buf) == TOKEN_SEMICOLON))
 
1320
      get_TOKEN(buf);
 
1321
 
 
1322
    if (nb_elems && buf->txt && (check_TOKEN(buf) != TOKEN_CBRACE) && (check_TOKEN(buf) != TOKEN_NAME))
1319
1323
    {
1320
1324
      token = get_TOKEN(buf);
1321
1325
      if ((token != TOKEN_SEMICOLON) && (token != TOKEN_COMMA))