~ubuntu-branches/ubuntu/raring/ceph/raring

« back to all changes in this revision

Viewing changes to src/rgw/rgw_common.cc

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-09-26 13:28:15 UTC
  • Revision ID: package-import@ubuntu.com-20120926132815-mqknhlfbqvzutm0s
Tags: 0.48.2-0ubuntu2
* Fix crash in radosgw on armhf architecture (LP: #1049582):
  - debian/patches/extra-byte-for-null.patch: Cherry picked patch
    from upstream VCS. Thanks to Yehuda Sadeh for pointing to this
    fix.
* d/ceph.lintian-overrides: Added libcls_rgw.so.1.0.0 to binaries
  which are not stripped.

Show diffs side-by-side

added added

removed removed

Lines of Context:
438
438
bool url_decode(string& src_str, string& dest_str)
439
439
{
440
440
  const char *src = src_str.c_str();
441
 
  char dest[src_str.size()];
 
441
  char dest[src_str.size() + 1];
442
442
  int pos = 0;
443
443
  char c;
444
444