~ubuntu-branches/ubuntu/quantal/poppler/quantal-proposed

« back to all changes in this revision

Viewing changes to utils/parseargs.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-01-16 19:03:32 UTC
  • mfrom: (1.7.2)
  • Revision ID: package-import@ubuntu.com-20120116190332-ffxz23fiqqu4g3nc
Tags: 0.18.3-0ubuntu1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 under GPL version 2 or later
17
17
 
18
18
 Copyright (C) 2008, 2009 Albert Astals Cid <aacid@kde.org>
19
 
 Copyright (C) 2011 Adrian Johnson <ajohnson@redneon.com>
 
19
 Copyright (C) 2011, 2012 Adrian Johnson <ajohnson@redneon.com>
20
20
 
21
21
 To see a description of the changes please see the Changelog file that
22
22
 came with your tarball or type make ChangeLog if you are building from git
157
157
    break;
158
158
  case argGooString:
159
159
    if (i + 1 < *argc) {
160
 
      ((GooString*)arg->val)->Set(argv[i+1], arg->size - 1);
161
 
      ((GooString*)arg->val)->append('\0');
 
160
      ((GooString*)arg->val)->Set(argv[i+1]);
162
161
      n = 2;
163
162
    } else {
164
163
      ok = gFalse;