realmedia: Remove dead assignments. The results are never read.

This commit is contained in:
Edward Hervey 2009-04-19 13:57:59 +02:00
parent 0d32a3703d
commit 2190ad3962
2 changed files with 2 additions and 2 deletions

View file

@ -188,7 +188,7 @@ gst_asm_scan_string (GstASMScan * scan, gchar delim)
scan->val[i] = '\0'; scan->val[i] = '\0';
if (ch == delim) if (ch == delim)
ch = NEXT_CHAR (scan); NEXT_CHAR (scan);
scan->token = GST_ASM_TOKEN_STRING; scan->token = GST_ASM_TOKEN_STRING;
} }

View file

@ -420,7 +420,7 @@ gst_rdt_depay_chain (GstPad * pad, GstBuffer * buf)
rdtdepay->header = NULL; rdtdepay->header = NULL;
/* push header data first */ /* push header data first */
ret = gst_rdt_depay_push (rdtdepay, out); gst_rdt_depay_push (rdtdepay, out);
} }
/* save timestamp */ /* save timestamp */